动态加载路由 页面刷新问题

This commit is contained in:
RuoYi
2019-12-03 18:02:35 +08:00
parent b70024487a
commit 9f5ed82cdf
3 changed files with 25 additions and 2 deletions

View File

@ -20,6 +20,7 @@ const permission = {
// 向后端请求路由数据
getRouters().then(res => {
const accessedRoutes = filterAsyncRouter(res.data)
accessedRoutes.push({ path: '*', redirect: '/404', hidden: true })
commit('SET_ROUTES', accessedRoutes)
resolve(accessedRoutes)
})