老师,关于props接收问题
来源:4-6 ColumnList 组件使用 Bootstrap 美化
再睡一会就码
2020-10-10
之前vue2 props传进来的值一般都是watch监听做处理的,vue3为什么监听不了呢,提示" A watch source can only be a getter/effect function, a ref, a reactive object, or an array of these types. " ,
写回答
1回答
-
同学你好
用了 ts 很好解释,watch 的第一个参数希望是个响应式对象或者是getter fucntion,
export declare type WatchSource<T = any> = Ref<T> | ComputedRef<T> | (() => T)
这样才能能在对应的改变的时候作出对应的操作。
如果不用 getter function,props 的一项很就是 普通的 js 值(这里是布尔),是无法监听变化的。所以你可以监听 watch(props, () => { }) 或者 watch(() => props.属性名称, { }) 来实现
012020-10-10
相似问题