[完成] 徽章组件

This commit is contained in:
就眠仪式
2021-09-27 16:42:13 +08:00
parent a1376e7685
commit 27c7bb511d
11 changed files with 161 additions and 2 deletions

View File

@@ -20,6 +20,11 @@ const zhCN = [
component: BaseLayout,
meta: { title: '组件', icon: 'el-icon-copy-document' },
children: [
{
path: '/zh-CN/components/layout',
component: () => import('../../docs/zh-CN/components/layout.md'),
meta: { title: '布局' },
},
{
path: '/zh-CN/components/button',
component: () => import('../../docs/zh-CN/components/button.md'),
@@ -40,6 +45,15 @@ const zhCN = [
path: '/zh-CN/components/grid',
component: () => import('../../docs/zh-CN/components/grid.md'),
meta: { title: '栅格' },
},{
path: '/zh-CN/components/form',
component: () => import('../../docs/zh-CN/components/form.md'),
meta: { title: '表单' },
},
{
path: '/zh-CN/components/badge',
component: () => import('../../docs/zh-CN/components/badge.md'),
meta: { title: '徽章' },
}
],
},