[组件] 初步集成 breadcrumb 面包屑
This commit is contained in:
23
docs/docs/zh-CN/components/breadcrumb.md
Normal file
23
docs/docs/zh-CN/components/breadcrumb.md
Normal file
@@ -0,0 +1,23 @@
|
||||
::: demo
|
||||
|
||||
<template>
|
||||
<lay-breadcrumb>
|
||||
<lay-breadcrumb-item title="哈哈"></lay-breadcrumb-item>
|
||||
<lay-breadcrumb-item title="哈哈"></lay-breadcrumb-item>
|
||||
<lay-breadcrumb-item title="哈哈"></lay-breadcrumb-item>
|
||||
</lay-breadcrumb>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { ref } from 'vue'
|
||||
|
||||
export default {
|
||||
setup() {
|
||||
|
||||
return {
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
:::
|
||||
@@ -76,8 +76,9 @@ export default {
|
||||
{ id: 14, title: '区块',subTitle:"block" ,path: '/zh-CN/components/block' },
|
||||
{ id: 15, title: '分割',subTitle:"line" ,path: '/zh-CN/components/line' },
|
||||
{ id: 16, title: '菜单',subTitle:"nav" ,path: '/zh-CN/components/menu' },
|
||||
{ id: 17, title: '进度',subTitle:"progress" ,path: '/zh-CN/components/progress' },
|
||||
{ id: 18, title: '时间线',subTitle:"timeline" ,path: '/zh-CN/components/timeline' },
|
||||
{ id: 17, title: '面包屑',subTitle:"breadcrumb" ,path: '/zh-CN/components/breadcrumb' },
|
||||
{ id: 18, title: '进度',subTitle:"progress" ,path: '/zh-CN/components/progress' },
|
||||
{ id: 19, title: '时间线',subTitle:"timeline" ,path: '/zh-CN/components/timeline' },
|
||||
]
|
||||
|
||||
const selected = ref(1)
|
||||
|
||||
@@ -37,6 +37,10 @@ const zhCN = [
|
||||
path: '/zh-CN/components/container',
|
||||
component: () => import('../../docs/zh-CN/components/container.md'),
|
||||
meta: { title: '容器' },
|
||||
}, {
|
||||
path: '/zh-CN/components/breadcrumb',
|
||||
component: () => import('../../docs/zh-CN/components/breadcrumb.md'),
|
||||
meta: { title: '面包屑' },
|
||||
},
|
||||
{
|
||||
path: '/zh-CN/components/button',
|
||||
|
||||
@@ -9,7 +9,6 @@
|
||||
--c-text-light-2: #476582;
|
||||
--c-text-light-3: #90a4b7;
|
||||
|
||||
--c-brand: #409eff;
|
||||
--c-brand-light: #4abf8a;
|
||||
|
||||
--shadow-1: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
|
||||
|
||||
Reference in New Issue
Block a user