vuejs-no-side-effects-in-computed-properties

Posted x-4k

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vuejs-no-side-effects-in-computed-properties相关的知识,希望对你有一定的参考价值。

watch: {
totalCount: function() {
if (!this.totalCount) {
this.fold = false;
return false;
}
},
fold: function(totalCount) {
let show = this.fold;
if (show) {
this.$nextTick(() => {
if (!this.scroll) {
this.scroll = new BScroll(this.$refs.listContent, {
click: true
});
} else {
this.scroll.refresh();
}
});
}
return show;
}
},























以上是关于vuejs-no-side-effects-in-computed-properties的主要内容,如果未能解决你的问题,请参考以下文章