ant-design-vue/examples/index.js

29 lines
514 B
JavaScript
Raw Normal View History

2017-10-26 07:18:08 +00:00
import Vue from 'vue'
import Checkbox from './checkbox.vue'
import Button from './button.vue'
2017-10-27 06:04:48 +00:00
import Radio from './radio.vue'
import Grid from './grid.vue'
2017-10-26 07:18:08 +00:00
// import Dialog from './dialog.vue'
2017-11-01 09:03:42 +00:00
import Rate from './rate.vue'
2017-10-26 07:18:08 +00:00
import './index.less'
new Vue({
el: '#app',
template: `
<div>
<Grid />
<Checkbox />
<AntButton />
<Radio />
2017-11-01 09:03:42 +00:00
<Rate />
2017-10-26 07:18:08 +00:00
</div>
`,
components: {
AntButton: Button,
// AntDialog: Dialog,
Checkbox,
Grid,
2017-10-27 06:04:48 +00:00
Radio,
2017-11-01 09:03:42 +00:00
Rate,
2017-10-26 07:18:08 +00:00
},
})