props使用方法
props默认值
const props = withDefaults(
defineProps<{
属性1:booelan
属性2: string
}>(),
{
属性1:false,
属性2: ''
}
)
props默认值
const props = withDefaults(
defineProps<{
属性1:booelan
属性2: string
}>(),
{
属性1:false,
属性2: ''
}
)