$watch
Vue 有可能$refs
吗?
我想针对嵌套在当前Vue实例内但ready
回调内的子组件设置逻辑,该子组件$refs.childcomponent
最初是undefined
在处理过程中使用的。
内 ready()
this.$watch('$refs', function() {
console.log("not firing");
}, { deep: true });
结果:错误:超出最大调用堆栈
watch
实例的属性
watch: {
'$refs': {
handler: function() { console.log("hit"); },
deep: true
}
}
结果:什么都没有。
不,$ refs不是被动的,监视将无法工作。