feat(tree): add tree component and wip workspace

This commit is contained in:
落小梅
2021-10-09 14:59:38 +08:00
parent 393ff8c9e0
commit 7dbb3b0353
8 changed files with 559 additions and 38 deletions

View File

@@ -18,14 +18,10 @@
style="margin-top: 0px; margin-bottom: 0px"
>
<li class="layui-nav-item">
<a href="https://gitee.com/layui-vue/layui-vue-sample">
案例
</a>
<a href="https://gitee.com/layui-vue/layui-vue-sample"> 案例 </a>
</li>
<li class="layui-nav-item">
<a href="https://gitee.com/layui-vue/layui-vue">
仓库
</a>
<a href="https://gitee.com/layui-vue/layui-vue"> 仓库 </a>
</li>
<li class="layui-nav-item">
<a
@@ -37,11 +33,16 @@
</ul>
</lay-header>
<lay-side>
<ul class="layui-menu layui-menu-lg layui-menu-docs" style="padding:6px">
<ul
class="layui-menu layui-menu-lg layui-menu-docs"
style="padding: 6px"
>
<li
:key="menu"
v-for="menu in menus"
:class="[currentPath === menu.path ? 'layui-menu-item-checked2' : '']"
:class="[
currentPath === menu.path ? 'layui-menu-item-checked2' : '',
]"
@click="handleClick(menu)"
>
<div class="layui-menu-body-title">
@@ -70,7 +71,7 @@ export default {
setup() {
const route = useRoute()
const router = useRouter()
const currentPath = ref("hahaha")
const currentPath = ref('hahaha')
watch(
() => route.path,
@@ -247,12 +248,19 @@ export default {
title: '选项卡',
subTitle: 'tab',
path: '/zh-CN/components/tab',
},{
},
{
id: 29,
title: '图标选择',
subTitle: 'iconPicker',
path: '/zh-CN/components/iconPicker',
},
{
id: 30,
title: '树形组件',
subTitle: 'tree',
path: '/zh-CN/components/tree',
},
]
const selected = ref(1)
@@ -284,4 +292,4 @@ export default {
.layui-menu-docs .layui-menu-body-title .layui-font-gray {
padding-left: 10px;
}
</style>
</style>

View File

@@ -148,7 +148,11 @@ const zhCN = [
path: '/zh-CN/components/iconPicker',
component: () => import('../../docs/zh-CN/components/iconPicker.md'),
meta: { title: '图标选择' },
}
}, {
path: '/zh-CN/components/tree',
component: () => import('../../docs/zh-CN/components/tree.md'),
meta: { title: '树形组件' }
},
],
},
]