mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-11-30 02:57:50 +08:00
23 lines
400 B
JavaScript
23 lines
400 B
JavaScript
import Vue from 'vue'
|
|
import Checkbox from './checkbox.vue'
|
|
import Button from './button.vue'
|
|
import Grid from './grid.vue'
|
|
// import Dialog from './dialog.vue'
|
|
import './index.less'
|
|
new Vue({
|
|
el: '#app',
|
|
template: `
|
|
<div>
|
|
<Grid />
|
|
<Checkbox />
|
|
<AntButton />
|
|
</div>
|
|
`,
|
|
components: {
|
|
AntButton: Button,
|
|
// AntDialog: Dialog,
|
|
Checkbox,
|
|
Grid,
|
|
},
|
|
})
|