vue 修改数据后页面不渲染的问题 暴躁的鼻涕虫 2020-07-09 249 阅读1分钟 vue 修改数据后页面不渲染的问题 this.$forceUpdate(); //强制刷新数据 或者也可以通过 $set来修改数据 deptSeleted(e, index) { e.show = !e.show; this.$set(this.deptList[index], e.show, !e.show); //this.$forceUpdate(); //强制刷新数据 }