vue3 ts defineProps
## ts 使用vue3的新特性时 props写法const props = defineProps({pic: {type: Array as () => Array<string>, //(string也可以是其他你自定义的接口)required: true,default: () => []}});***...
·
ts 使用vue3的defineProps时 props写法
const props = defineProps({
pic: {
type: Array as () => Array<string>, //(string也可以是其他你自定义的接口)
required: true,
default: () => []
}
});
更多推荐
已为社区贡献1条内容
所有评论(0)