出现下面这种白屏,并且没有请求接口,f12很僵硬。
原因
我的原因是:退出时没有把store清空,重新登陆后判断到srore存的路由length>0,所以没有重新遍历接口传过来的menu
解决方法
async logout() {
// 退出清空菜单
await this.$store.dispatch("user/logout");
await this.$router.replace(`/login?redirect=${this.$route.fullPath}`);
await this.$store.dispatch("permission/removeRouter");
location.reload();
},
退出的时候清空一下