vue 修改数据后页面不渲染的问题

249 阅读1分钟

vue 修改数据后页面不渲染的问题

this.$forceUpdate(); //强制刷新数据
或者也可以通过 $set来修改数据
deptSeleted(e, index) {
      e.show = !e.show;
      this.$set(this.deptList[index], e.show, !e.show);
      //this.$forceUpdate(); //强制刷新数据
}