watch可以监听到对象中某一个属性的变化,不过要用``号来包裹
watch的两种写法
watch: { 这个rw是prop 的值 rw () { this.setoption() } rw: { immediate: true, handler (val, old) { this.init() } } },
两种写法都可以实现在检测到rw的值变化时,进行调用里面的方法
watch: { 这个rw是prop 的值 rw () { this.setoption() } rw: { immediate: true, handler (val, old) { this.init() } } },
两种写法都可以实现在检测到rw的值变化时,进行调用里面的方法