docs: add tips

This commit is contained in:
花裤衩 2020-05-05 11:06:51 +08:00
parent 6dacb783b2
commit e692876c28
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ router.beforeEach(async(to, from, next) => {
if (to.path === '/login') {
// if is logged in, redirect to the home page
next({ path: '/' })
NProgress.done()
NProgress.done() // hack: https://github.com/PanJiaChen/vue-element-admin/pull/2939
} else {
// determine whether the user has obtained his permission roles through getInfo
const hasRoles = store.getters.roles && store.getters.roles.length > 0