watch: {
'$store.state.fold': {
handler() {
this.wheel()
},
},
},
上面是正确写法,可以调用成功
这个是错误写法
watch: {
'$store.state.fold': {
handler:()=> {
this.wheel()
},
},
},
watch: {
'$store.state.fold': {
handler:function() {
this.wheel()
},
},
},