2018-12-05 13:42:52 +08:00
|
|
|
import borderBox1 from './borderBox1/index'
|
|
|
|
import borderBox2 from './borderBox2/index'
|
|
|
|
import borderBox3 from './borderBox3/index'
|
|
|
|
import borderBox4 from './borderBox4/index'
|
2018-12-07 18:28:59 +08:00
|
|
|
import borderBox5 from './borderBox5/index'
|
2018-12-08 16:05:04 +08:00
|
|
|
import borderBox6 from './borderBox6/index'
|
2018-12-05 13:42:52 +08:00
|
|
|
|
2018-12-05 18:30:45 +08:00
|
|
|
import decoration1 from './decoration1/index'
|
|
|
|
import decoration2 from './decoration2/index'
|
2018-12-07 18:28:59 +08:00
|
|
|
import decoration3 from './decoration3/index'
|
2018-12-05 18:30:45 +08:00
|
|
|
|
|
|
|
import numberShow from './numberShow/index.vue'
|
|
|
|
|
|
|
|
import capsuleChart from './capsuleChart/index.vue'
|
|
|
|
import ringChart from './ringChart/index.vue'
|
2018-12-08 16:05:04 +08:00
|
|
|
import polylineChart from './polylineChart/index.vue'
|
2018-12-05 18:30:45 +08:00
|
|
|
|
2018-12-07 15:49:55 +08:00
|
|
|
import loading from './loading/index.vue'
|
|
|
|
|
2018-12-05 13:42:52 +08:00
|
|
|
export default function (Vue) {
|
|
|
|
Vue.component('borderBox1', borderBox1)
|
|
|
|
Vue.component('borderBox2', borderBox2)
|
|
|
|
Vue.component('borderBox3', borderBox3)
|
|
|
|
Vue.component('borderBox4', borderBox4)
|
2018-12-07 18:28:59 +08:00
|
|
|
Vue.component('borderBox5', borderBox5)
|
2018-12-08 16:05:04 +08:00
|
|
|
Vue.component('borderBox6', borderBox6)
|
2018-12-05 18:30:45 +08:00
|
|
|
Vue.component('decoration1', decoration1)
|
|
|
|
Vue.component('decoration2', decoration2)
|
2018-12-07 18:28:59 +08:00
|
|
|
Vue.component('decoration3', decoration3)
|
2018-12-05 18:30:45 +08:00
|
|
|
Vue.component('numberShow', numberShow)
|
|
|
|
Vue.component('capsuleChart', capsuleChart)
|
2018-12-08 16:05:04 +08:00
|
|
|
Vue.component('polylineChart', polylineChart)
|
2018-12-05 18:30:45 +08:00
|
|
|
Vue.component('ringChart', ringChart)
|
2018-12-07 15:49:55 +08:00
|
|
|
Vue.component('loading', loading)
|
2018-12-05 13:42:52 +08:00
|
|
|
}
|