注意将接收参数监听 用toRefs方式获取使用
// 固定值不变的方式
const { param }= defineProps({
param: {
type: Number,
default: () => { }
}
})
修改为
const props = defineProps({
param: {
type: Number,
default: () => { }
}
})
const { param } = toRefs(props)
网友评论