feat: add card-list page

This commit is contained in:
陈小婷
2020-11-23 22:03:40 +08:00
parent 737b1b190c
commit 3a132f3f4f
5 changed files with 148 additions and 0 deletions

View File

@@ -209,6 +209,26 @@ const page: AppRouteModule = {
],
},
// =============================exception end=============================
// =============================list start=============================
{
path: '/list',
name: 'ListPage',
redirect: '/page-demo/list/card',
meta: {
title: '列表页',
},
children: [
{
path: 'card',
name: 'ListCardPage',
component: () => import('/@/views/demo/page/list/card/index.vue'),
meta: {
title: '卡片列表',
},
},
],
},
// =============================list end=============================
],
};