vue3+ts 绑定props 默认值的方式:withDefaults

2,522 阅读1分钟

withDefaults 作用是给defineProps绑定默认的api 例如: 父组件:

<template>
    <TsSample :msg='msg' @on-updated='onUpdated' title='title' @on-delete='onDelete'/> 
</template>

子组件:

<template> <h1>ts sample</h1> <p>{{ msg }}</p> </template>

image.png

image.png