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'
|
2017-10-27 05:24:22 +00:00
|
|
|
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>
|
2017-10-27 05:24:22 +00:00
|
|
|
<Grid />
|
|
|
|
<Checkbox />
|
|
|
|
<AntButton />
|
2017-10-27 07:17:53 +00:00
|
|
|
<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,
|
2017-10-27 05:24:22 +00:00
|
|
|
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
|
|
|
},
|
|
|
|
})
|