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-13 18:48:54 +08:00
|
|
|
import borderBox7 from './borderBox7/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-08 19:06:00 +08:00
|
|
|
import decoration4 from './decoration4/index'
|
2018-12-14 19:45:23 +08:00
|
|
|
import decoration5 from './decoration5/index'
|
2018-12-16 17:56:59 +08:00
|
|
|
import loading from './loading/index.vue'
|
2018-12-05 18:30:45 +08:00
|
|
|
|
|
|
|
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-09 16:50:02 +08:00
|
|
|
import concentricArcChart from './concentricArcChart/index.vue'
|
2018-12-12 18:46:15 +08:00
|
|
|
import arcRingChart from './arcRingChart/index.vue'
|
2018-12-14 19:45:23 +08:00
|
|
|
import radarChart from './radarChart/index.vue'
|
2018-12-05 18:30:45 +08:00
|
|
|
|
2018-12-08 19:06:00 +08:00
|
|
|
import numberShow from './numberShow/index.vue'
|
2018-12-16 17:56:59 +08:00
|
|
|
import percentPond from './percentPond/index.vue'
|
2018-12-17 16:48:46 +08:00
|
|
|
import waterLevelPond from './waterLevelPond/index.vue'
|
2018-12-08 19:06:00 +08:00
|
|
|
import scrollBoard from './scrollBoard/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-13 18:48:54 +08:00
|
|
|
Vue.component('borderBox7', borderBox7)
|
2018-12-14 19:45:23 +08:00
|
|
|
|
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-08 19:06:00 +08:00
|
|
|
Vue.component('decoration4', decoration4)
|
2018-12-14 19:45:23 +08:00
|
|
|
Vue.component('decoration5', decoration5)
|
2018-12-16 17:56:59 +08:00
|
|
|
Vue.component('loading', loading)
|
2018-12-14 19:45:23 +08:00
|
|
|
|
2018-12-05 18:30:45 +08:00
|
|
|
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-09 16:50:02 +08:00
|
|
|
Vue.component('concentricArcChart', concentricArcChart)
|
2018-12-09 19:49:14 +08:00
|
|
|
Vue.component('arcRingChart', arcRingChart)
|
2018-12-14 19:45:23 +08:00
|
|
|
Vue.component('radarChart', radarChart)
|
|
|
|
|
2018-12-08 19:06:00 +08:00
|
|
|
Vue.component('numberShow', numberShow)
|
2018-12-16 17:56:59 +08:00
|
|
|
Vue.component('percentPond', percentPond)
|
2018-12-17 16:48:46 +08:00
|
|
|
Vue.component('waterLevelPond', waterLevelPond)
|
2018-12-08 19:06:00 +08:00
|
|
|
Vue.component('scrollBoard', scrollBoard)
|
2018-12-05 13:42:52 +08:00
|
|
|
}
|