no message

Former-commit-id: c158093370551ee9c31817038c17e703437e6654 [formerly c158093370551ee9c31817038c17e703437e6654 [formerly c158093370551ee9c31817038c17e703437e6654 [formerly c158093370551ee9c31817038c17e703437e6654 [formerly 07f35e754f5c16bff0b10cc43140e82f1a6df22c [formerly 99258e4841574a4703fdb353a61a06ea25853272]]]]]
Former-commit-id: 4679968486593f3089e704692b74d71bf573bf16
Former-commit-id: 923bc8abcc4f7814cc86c1eca1399040da4b5af6
Former-commit-id: 0518eee275cca052bfdd25e8a8ce79c93bb00c4a [formerly edc7495659d3cee914fb12df43ab98340a5be073]
Former-commit-id: 592ea1a18dbbd099a3abbe1d2d5f50d3a5ebb307
Former-commit-id: 27d35051495887dcc12eda0c18a983c3bf86fa97
Former-commit-id: 0ed49042b648a347b2ff839373c8143aa62535bc
Former-commit-id: f1a0414756a72b8e957bb0b89d53e0ce00b50eed
Former-commit-id: 7c64ebc943a66ad7ae50ff757bb7794bb539406a
This commit is contained in:
liyang
2018-06-18 21:09:34 +08:00
parent c20fdebe3a
commit 62f31cf90c
3 changed files with 13 additions and 0 deletions

View File

@@ -140,6 +140,13 @@ const demoElement = {
{ path: `${pre}basic-icon`, title: '图标' },
{ path: `${pre}basic-button`, title: '按钮' }
]
},
{
path: `${pre}form`,
title: '表单',
children: [
{ path: `${pre}form-radio`, title: '单选框' }
]
}
])('/demo/element/')
}

View File

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

View File

@@ -114,6 +114,7 @@ const routes = [
{ path: 'basic-typography', name: `${pre}basic-typography`, component: () => import('@/pages/demo/element/basic-typography/index.vue'), meta },
{ path: 'basic-icon', name: `${pre}basic-icon`, component: () => import('@/pages/demo/element/basic-icon/index.vue'), meta },
{ path: 'basic-button', name: `${pre}basic-button`, component: () => import('@/pages/demo/element/basic-button/index.vue'), meta },
{ path: 'form-radio', name: `${pre}form-radio`, component: () => import('@/pages/demo/element/form-radio/index.vue'), meta },
{ path: 'index', name: `${pre}index`, component: () => import('@/pages/demo/element/index/index.vue'), meta }
])('demo-element-')
},