Closed harsima closed 6 years ago
在index.vue中,进行以下修改:
export default {
created(){
// 加入Token过期及刷新机制后,token会定时清除,所以不能再根据cookie中的token判断用户是否登录
if (Cookie.get('isLogin')) {
this.$store.dispatch('auth/relogin')
}
}
}
登录到系统后,有时刷新页面时,用户名栏为空