vue3 子组件接收参数不改变

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

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

修改为

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

你可能感兴趣的:(vue3 子组件接收参数不改变)