[新增] tab 选项卡组件

This commit is contained in:
就眠仪式
2021-10-05 19:04:06 +08:00
parent 7fc0c0dfd5
commit ca490d6430
8 changed files with 81 additions and 2 deletions

View File

@@ -85,7 +85,8 @@ export default {
{ id: 24, title: '字段',subTitle:"field" ,path: '/zh-CN/components/field' },
{ id: 25, title: '空',subTitle:"empty" ,path: '/zh-CN/components/empty' },
{ id: 26, title: '评分',subTitle:"rate" ,path: '/zh-CN/components/rate' },
{ id: 27, title: '下拉', subTitle: "dropdown", path: '/zh-CN/components/dropdown'}
{ id: 27, title: '下拉', subTitle: "dropdown", path: '/zh-CN/components/dropdown'},
{ id: 28, title: '选项卡', subTitle: "tab", path: '/zh-CN/components/tab'}
]
const selected = ref(1)

View File

@@ -140,6 +140,10 @@ const zhCN = [
path: '/zh-CN/components/dropdown',
component: () => import('../../docs/zh-CN/components/dropdown.md'),
meta: { title: '下拉' },
},{
path: '/zh-CN/components/tab',
component: () => import('../../docs/zh-CN/components/tab.md'),
meta: { title: '选项卡' },
}
],
},