详细问题描述
nvue 无法监听store中的值,直接绑定到dom上是可以的,但是监听不了,也不能再次计算。h5 vue中没问题
=============================================
找到原因了,打开调试器的时候就不生效,关闭调试器就好了,是个奇葩的bug
computed: {
...mapGetters({
isLogin: 'userInfo/isLogin'
}),
watchIsLogin() {
console.log('11111h5、vue中走,app、nvue中不走');
this.isLogin && this.doNext()
return this.isLogin
}
},
watch: {
isLogin(newVal) {
console.log('11111h5、vue中走,app、nvue中不走');
newVal && this.doNext()
},
},
1 个回复
xqd93 (作者)
没有人有这种需求吗?