vue监听全局变量
可能因为格式的问题,无法再组件里面直接监听全局变量,通过compute属性来更新computed: {listenshowpage1() {return this.$store.state._achievements;}},watch:{listenshowpage1:function(old,newd){...
·
可能因为格式的问题,无法再组件里面直接监听全局变量,通过compute属性来更新
computed: {
listenshowpage1() {
return this.$store.state._achievements
;
}
},
watch:{
listenshowpage1:function(old,newd){
console.log(old)
this.temp = old;
}
}
注意要先在main.js,store中注册该变量,否则会无效
更多推荐
已为社区贡献8条内容
所有评论(0)