From 2d8109f31874ded12e823b4de5910df2cb129e87 Mon Sep 17 00:00:00 2001 From: liyang <1711467488@qq.com> Date: Thu, 15 Nov 2018 17:00:12 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E8=8F=9C=E5=8D=95=E7=BB=93?= =?UTF-8?q?=E6=9E=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- src/menu/modules/demo-components.js | 40 +++++++++++++++++++++-------- 1 file changed, 30 insertions(+), 10 deletions(-) diff --git a/src/menu/modules/demo-components.js b/src/menu/modules/demo-components.js index a1835dc6..079184a1 100644 --- a/src/menu/modules/demo-components.js +++ b/src/menu/modules/demo-components.js @@ -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' } + ] + } ] }, {