使用局部刷新解决
在需要刷新的组件写一个变量,自己在data里面简历变量哦:
isReloadData: true
methods里面写一个方法
methods: {
reloadPart() {
this.isReloadData = false;
this.$nextTick(() => {
this.isReloadData = true;
});
},
在需要刷新的地方调用即可
标签:菜单,methods,isReloadData,切换,刷新,true,页面 From: https://www.cnblogs.com/sinceForever/p/17467599.html