harsima / vue-backend

简单的后台管理框架
MIT License
883 stars 347 forks source link

刷新页面后,某些时候会不显示用户名 #19

Closed harsima closed 6 years ago

harsima commented 6 years ago

登录到系统后,有时刷新页面时,用户名栏为空

harsima commented 6 years ago

在index.vue中,进行以下修改:

export default {
    created(){
        // 加入Token过期及刷新机制后,token会定时清除,所以不能再根据cookie中的token判断用户是否登录
        if (Cookie.get('isLogin')) {
            this.$store.dispatch('auth/relogin')
        }
    }
}