请问老师在vue3.2中如何改写这个啊
来源:5-1 web 世界的经典元素 - 表单

情分的小前端
2022-07-08
props: {
title: {
type: String,
require: true
}
},
我是这么写的
const props = defineProps<{
title: string
}>()
写回答
1回答
-
张轩
2022-07-09
同学你好
你写的是对的,ts 发挥威力了,假如是可选直接加问号就好了。
022023-05-14
相似问题