You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/examples/index.js

20 lines
349 B

7 years ago
import Vue from 'vue'
import Checkbox from './checkbox.vue'
import Button from './button.vue'
// import Dialog from './dialog.vue'
import './index.less'
new Vue({
el: '#app',
template: `
<div>
<Checkbox />
<AntButton />
</div>
`,
components: {
AntButton: Button,
// AntDialog: Dialog,
Checkbox,
},
})