vue3 子组件接收参数不改变

2022-09-05  本文已影响0人  江火渔枫

注意将接收参数监听 用toRefs方式获取使用

// 固定值不变的方式
const { param }= defineProps({
  param: {
    type: Number,
    default: () => { }
  }
})

修改为

const props = defineProps({
  param: {
    type: Number,
    default: () => { }
  }
})
const { param } = toRefs(props)
上一篇 下一篇

猜你喜欢

热点阅读