修改菜单结构

Former-commit-id: d07a6ceca4d8ca53a02249b33dc9c81560b3a6b3 [formerly d07a6ceca4d8ca53a02249b33dc9c81560b3a6b3 [formerly d07a6ceca4d8ca53a02249b33dc9c81560b3a6b3 [formerly d07a6ceca4d8ca53a02249b33dc9c81560b3a6b3 [formerly e6cf7524cfdce2cc21d7cb99deab0b7e9c69621f [formerly 778a9799c4b87a86560d8f86aea9c154fd486c9d]]]]]
Former-commit-id: 5fc5040946c89e09cdbb24154bd00ba058b5693e
Former-commit-id: 629ee0bd8614a73f7c3903655fb1b880c23819d8
Former-commit-id: e92410850ac5eaf622e3c35f3f0ea0413ec8324f [formerly 78885143dc0d7d1a82a87e5562df469e92c0d371]
Former-commit-id: 3507e8cff7c7e5545200c21092aad7c09992990e
Former-commit-id: 2009e1f0912b28a773556d78af3f7acc1660b719
Former-commit-id: 7896efe94fe6a29e2c4f10d6dd2dce92041ee0a5
Former-commit-id: a87deb9c1e65a738a1bcb3df2797ecb130f9623b
Former-commit-id: 92f3912e935737d55cad349596bd5e6ff42fa83f
This commit is contained in:
liyang
2018-11-15 17:00:12 +08:00
parent d4f7a1f6f5
commit 2d8109f318

View File

@@ -9,16 +9,36 @@ export default {
title: '布局容器',
icon: 'window-restore',
children: [
{ path: `${pre}container/api`, title: 'API' },
{ path: `${pre}container/full`, title: '填充' },
{ path: `${pre}container/full-slot`, title: '填充 插槽' },
{ path: `${pre}container/full-bs`, title: '填充 滚动优化' },
{ path: `${pre}container/ghost`, title: '隐形' },
{ path: `${pre}container/ghost-slot`, title: '隐形 插槽' },
{ path: `${pre}container/ghost-bs`, title: '隐形 滚动优化' },
{ path: `${pre}container/card`, title: '卡片' },
{ path: `${pre}container/card-slot`, title: '卡片 插槽' },
{ path: `${pre}container/card-bs`, title: '卡片 滚动优化' }
{
title: '填充',
children: [
{ path: `${pre}container/full`, title: '基础' },
{ path: `${pre}container/full-slot`, title: '插槽' },
{ path: `${pre}container/full-bs`, title: '滚动优化' }
]
},
{
title: '隐形模式',
children: [
{ path: `${pre}container/ghost`, title: '基础' },
{ path: `${pre}container/ghost-slot`, title: '插槽' },
{ path: `${pre}container/ghost-bs`, title: '滚动优化' }
]
},
{
title: '卡片型',
children: [
{ path: `${pre}container/card`, title: '基础' },
{ path: `${pre}container/card-slot`, title: '插槽' },
{ path: `${pre}container/card-bs`, title: '滚动优化' }
]
},
{
title: '方法',
children: [
{ path: `${pre}container/api`, title: 'API' }
]
}
]
},
{