feat: add accountSetting page (#85)

This commit is contained in:
chen-xt
2020-11-14 20:34:46 +08:00
committed by GitHub
parent 261936b117
commit 7ad4cee79a
11 changed files with 525 additions and 0 deletions

View File

@@ -116,6 +116,27 @@ const page: AppRouteModule = {
],
},
// =============================exception end=============================
// =============================account start=============================
{
path: '/account',
name: 'AccountPage',
redirect: '/page-demo/account/setting',
meta: {
title: '个人页',
},
children: [
{
path: 'setting',
name: 'AccountSettingPage',
component: () => import('/@/views/demo/page/account/setting/index.vue'),
meta: {
title: '个人设置',
},
},
],
},
// =============================account end=============================
],
};