no message

Former-commit-id: 8910f59bf73bf8509411842359b5dc38e208bb46 [formerly 8910f59bf73bf8509411842359b5dc38e208bb46 [formerly 8910f59bf73bf8509411842359b5dc38e208bb46 [formerly 8910f59bf73bf8509411842359b5dc38e208bb46 [formerly dd9dd5327eeba2b6c9ce4a1def34aa092d1e2062 [formerly ea11827d08ed68772e9a91d3403590d1f8f1d427]]]]]
Former-commit-id: 2cb91e5b8a63f90bafedf1177e9aa5c18bfb08bb
Former-commit-id: f2a8670f1ca819b85bbb2c39fbe2aa1f33d9e82a
Former-commit-id: 03a5e17caa5e0ffe309a465acc2f9b9fc5723060 [formerly 361b282e4ba4efd616ccc74904dc76fcb1fe6589]
Former-commit-id: 293c98cf32a1515bf8cd483391879ba369dabb77
Former-commit-id: 14d000623a06a4770640fcd4cb40a4dc2aeeaef1
Former-commit-id: 9ea9b7ad9ab85ed68de0dccba07dcd204075f65f
Former-commit-id: e4e04b965389dacea290723d09cc4f4ff89374a3
Former-commit-id: ed67ccd55722166de0f41d1bdf5ca67c1d199361
This commit is contained in:
liyang
2018-06-18 23:46:50 +08:00
parent 0769fbfba9
commit 5449688589
5 changed files with 28 additions and 1 deletions

View File

@@ -147,7 +147,10 @@ const demoElement = {
children: [
{ path: `${pre}form-radio`, title: '单选框' },
{ path: `${pre}form-checkbox`, title: '多选框' },
{ path: `${pre}form-input`, title: '输入框' }
{ path: `${pre}form-input`, title: '输入框' },
{ path: `${pre}form-input-number`, title: '计数器' },
{ path: `${pre}form-select`, title: '选择器' },
{ path: `${pre}form-cascader`, title: '级联选择器' }
]
}
])('/demo/element/')

View File

@@ -0,0 +1,7 @@
<template>
<d2-container>
<h1 class="d2-mt-0">该页面尚未完成组件示例搬运</h1>
<p>D2Admin 的构建依托于由饿了么出品的 ElementUI欲了解更多该组件的信息请查阅以下链接</p>
<d2-demo-link-btn title="Element" link="http://element.eleme.io/#/zh-CN"/>
</d2-container>
</template>

View File

@@ -0,0 +1,7 @@
<template>
<d2-container>
<h1 class="d2-mt-0">该页面尚未完成组件示例搬运</h1>
<p>D2Admin 的构建依托于由饿了么出品的 ElementUI欲了解更多该组件的信息请查阅以下链接</p>
<d2-demo-link-btn title="Element" link="http://element.eleme.io/#/zh-CN"/>
</d2-container>
</template>

View File

@@ -0,0 +1,7 @@
<template>
<d2-container>
<h1 class="d2-mt-0">该页面尚未完成组件示例搬运</h1>
<p>D2Admin 的构建依托于由饿了么出品的 ElementUI欲了解更多该组件的信息请查阅以下链接</p>
<d2-demo-link-btn title="Element" link="http://element.eleme.io/#/zh-CN"/>
</d2-container>
</template>

View File

@@ -117,6 +117,9 @@ const routes = [
{ path: 'form-radio', name: `${pre}form-radio`, component: () => import('@/pages/demo/element/form-radio/index.vue'), meta },
{ path: 'form-checkbox', name: `${pre}form-checkbox`, component: () => import('@/pages/demo/element/form-checkbox/index.vue'), meta },
{ path: 'form-input', name: `${pre}form-input`, component: () => import('@/pages/demo/element/form-input/index.vue'), meta },
{ path: 'form-input-number', name: `${pre}form-input-number`, component: () => import('@/pages/demo/element/form-input-number/index.vue'), meta },
{ path: 'form-select', name: `${pre}form-select`, component: () => import('@/pages/demo/element/form-select/index.vue'), meta },
{ path: 'form-cascader', name: `${pre}form-cascader`, component: () => import('@/pages/demo/element/form-cascader/index.vue'), meta },
{ path: 'index', name: `${pre}index`, component: () => import('@/pages/demo/element/index/index.vue'), meta }
])('demo-element-')
},