|
@@ -0,0 +1,14 @@
|
|
|
+/* Layout */
|
|
|
+import Layout from '@/layout'
|
|
|
+
|
|
|
+export default {
|
|
|
+ path: '/personalCenter',
|
|
|
+ component: Layout,
|
|
|
+ redirect: '/personalCenter/index',
|
|
|
+ children: [{
|
|
|
+ path: 'personalCenter',
|
|
|
+ name: 'personalCenter',
|
|
|
+ component: () => import('@/views/personalCenter/index'),
|
|
|
+ meta: { title: '个人中心', icon: 'myAccount', breadcrumb: false }
|
|
|
+ }]
|
|
|
+}
|