feature[profile]: add profile page (#1953)

This commit is contained in:
Tuan Duong
2019-04-25 16:45:46 +07:00
committed by 花裤衩
parent f9f51986e6
commit c58e2078bc
13 changed files with 511 additions and 6 deletions

View File

@@ -107,6 +107,20 @@ export const constantRoutes = [
meta: { title: 'guide', icon: 'guide', noCache: true }
}
]
},
{
path: '/profile',
component: Layout,
redirect: '/profile/index',
hidden: true,
children: [
{
path: 'index',
component: () => import('@/views/profile/index'),
name: 'Profile',
meta: { title: 'profile', icon: 'user', noCache: true }
}
]
}
]