no message

Former-commit-id: fadbd61b42f8a95502f3ad3c926aff4eead31d54 [formerly 58d1de7d5f1a50a09e99dbb14dc191fee8ccd795] [formerly fadbd61b42f8a95502f3ad3c926aff4eead31d54 [formerly 58d1de7d5f1a50a09e99dbb14dc191fee8ccd795] [formerly fadbd61b42f8a95502f3ad3c926aff4eead31d54 [formerly 58d1de7d5f1a50a09e99dbb14dc191fee8ccd795] [formerly 58d1de7d5f1a50a09e99dbb14dc191fee8ccd795 [formerly 097cced8676e3aacdb34660b482b865bcf2fcf5d [formerly 452b2105ede66f09ca0acb3b72dff153db00f890]]]]]
Former-commit-id: 4d967b96ab7a96ad0e13a5b82806609acd2cb33e
Former-commit-id: 862906cac8b23acfc510acfd811be784de599ca0
Former-commit-id: f90c5019c973412e32b7c92ba41686dc8f01184d [formerly 8f9063cbb007c10cbfa675e5157717103b755a2f]
Former-commit-id: f2dd879b8cf65f7a89d9106fb229451f521387f4
Former-commit-id: 5f2558471ecfd4bb276bb962840971ba2e4ef2f5
Former-commit-id: d28e1968bbe4b445e3d121dc6b724d4fc18c9cfa
Former-commit-id: 3e6ebb72ad9c1ece7a7b7b201bebed06eaf2b5b5
Former-commit-id: 559a857fd350325d1fd5df5a322d754c00f5c9b3
This commit is contained in:
liyang
2018-06-13 19:06:56 +08:00
parent 5c96bd3d11
commit 1ec451b6ce
3 changed files with 7 additions and 0 deletions

View File

@@ -87,6 +87,7 @@ const demoComponents = {
{ path: `${pre}markdown/url`, title: '异步加载文件' } { path: `${pre}markdown/url`, title: '异步加载文件' }
] ]
}, },
{ path: `${pre}bigdata-table`, title: '超大量数据表格' },
{ path: `${pre}countup`, title: '数字动画' }, { path: `${pre}countup`, title: '数字动画' },
{ path: `${pre}editor-quill`, title: '富文本编辑器' }, { path: `${pre}editor-quill`, title: '富文本编辑器' },
{ path: `${pre}editor-simpleMDE`, title: 'markdown编辑器' }, { path: `${pre}editor-simpleMDE`, title: 'markdown编辑器' },

View File

@@ -0,0 +1,5 @@
<template>
<d2-container>
Hello
</d2-container>
</template>

View File

@@ -26,6 +26,7 @@ const routes = [
redirect: { name: 'demo-components-index' }, redirect: { name: 'demo-components-index' },
component: () => import('@/components/core/d2-layout-main/index.vue'), component: () => import('@/components/core/d2-layout-main/index.vue'),
children: (pre => [ children: (pre => [
{ path: 'bigdata-table', name: `${pre}bigdata-table`, component: () => import('@/pages/demo/components/bigdata-table/index.vue') },
{ path: 'container/full', name: `${pre}container-full`, component: () => import('@/pages/demo/components/container/full.vue') }, { path: 'container/full', name: `${pre}container-full`, component: () => import('@/pages/demo/components/container/full.vue') },
{ path: 'container/ghost', name: `${pre}container-ghost`, component: () => import('@/pages/demo/components/container/ghost.vue') }, { path: 'container/ghost', name: `${pre}container-ghost`, component: () => import('@/pages/demo/components/container/ghost.vue') },
{ path: 'container/card', name: `${pre}container-card`, component: () => import('@/pages/demo/components/container/card.vue') }, { path: 'container/card', name: `${pre}container-card`, component: () => import('@/pages/demo/components/container/card.vue') },