2019-06-25 19:57:04 +08:00
|
|
|
import fullScreenContainer from './fullScreenContainer'
|
|
|
|
import loading from './loading/index.vue'
|
|
|
|
|
|
|
|
// border box
|
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'
|
2019-06-25 19:57:04 +08:00
|
|
|
import borderBox8 from './borderBox8/index'
|
2018-12-05 13:42:52 +08:00
|
|
|
|
2019-06-25 19:57:04 +08:00
|
|
|
// decoration
|
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-20 09:19:25 +08:00
|
|
|
import decoration6 from './decoration6/index'
|
2018-12-21 15:47:49 +08:00
|
|
|
import decoration7 from './decoration7/index'
|
2019-06-25 19:57:04 +08:00
|
|
|
import decoration8 from './decoration8/index'
|
2018-12-05 18:30:45 +08:00
|
|
|
|
2019-06-25 19:57:04 +08:00
|
|
|
// charts
|
|
|
|
import charts from './charts/index.vue'
|
2018-12-05 18:30:45 +08:00
|
|
|
|
2019-06-25 19:57:04 +08:00
|
|
|
import activeRingChart from './activeRingChart'
|
2018-12-17 16:48:46 +08:00
|
|
|
import waterLevelPond from './waterLevelPond/index.vue'
|
2019-06-25 19:57:04 +08:00
|
|
|
import percentPond from './percentPond/index.vue'
|
|
|
|
import flylineChart from './flylineChart'
|
2019-06-27 19:27:37 +08:00
|
|
|
import conicalColumnChart from './conicalColumnChart'
|
2019-06-25 19:57:04 +08:00
|
|
|
import digitalFlop from './digitalFlop'
|
2018-12-08 19:06:00 +08:00
|
|
|
import scrollBoard from './scrollBoard/index.vue'
|
2019-06-27 19:27:37 +08:00
|
|
|
import scrollRankingBoard from './scrollRankingBoard/index.vue'
|
2018-12-08 19:06:00 +08:00
|
|
|
|
2018-12-05 13:42:52 +08:00
|
|
|
export default function (Vue) {
|
2019-06-25 19:57:04 +08:00
|
|
|
Vue.component('dvFullScreenContainer', fullScreenContainer)
|
|
|
|
|
|
|
|
Vue.component('dvLoading', loading)
|
|
|
|
|
|
|
|
// border box
|
|
|
|
Vue.component('dvBorderBox1', borderBox1)
|
|
|
|
Vue.component('dvBorderBox2', borderBox2)
|
|
|
|
Vue.component('dvBorderBox3', borderBox3)
|
|
|
|
Vue.component('dvBorderBox4', borderBox4)
|
|
|
|
Vue.component('dvBorderBox5', borderBox5)
|
|
|
|
Vue.component('dvBorderBox6', borderBox6)
|
|
|
|
Vue.component('dvBorderBox7', borderBox7)
|
|
|
|
Vue.component('dvBorderBox8', borderBox8)
|
2018-12-14 19:45:23 +08:00
|
|
|
|
2019-06-25 19:57:04 +08:00
|
|
|
// decoration
|
|
|
|
Vue.component('dvDecoration1', decoration1)
|
|
|
|
Vue.component('dvDecoration2', decoration2)
|
|
|
|
Vue.component('dvDecoration3', decoration3)
|
|
|
|
Vue.component('dvDecoration4', decoration4)
|
|
|
|
Vue.component('dvDecoration5', decoration5)
|
|
|
|
Vue.component('dvDecoration6', decoration6)
|
|
|
|
Vue.component('dvDecoration7', decoration7)
|
|
|
|
Vue.component('dvDecoration8', decoration8)
|
2018-12-14 19:45:23 +08:00
|
|
|
|
2019-06-25 19:57:04 +08:00
|
|
|
// charts
|
|
|
|
Vue.component('dvCharts', charts)
|
2018-12-14 19:45:23 +08:00
|
|
|
|
2019-06-25 19:57:04 +08:00
|
|
|
Vue.component('dvActiveRingChart', activeRingChart)
|
|
|
|
Vue.component('dvWaterLevelPond', waterLevelPond)
|
|
|
|
Vue.component('dvPercentPond', percentPond)
|
|
|
|
Vue.component('dvFlylineChart', flylineChart)
|
2019-06-27 19:27:37 +08:00
|
|
|
Vue.component('dvConicalColumnChart', conicalColumnChart)
|
2019-06-25 19:57:04 +08:00
|
|
|
Vue.component('dvDigitalFlop', digitalFlop)
|
2019-06-26 15:25:53 +08:00
|
|
|
Vue.component('dvScrollBoard', scrollBoard)
|
2019-06-27 19:27:37 +08:00
|
|
|
Vue.component('dvScrollRankingBoard', scrollRankingBoard)
|
2018-12-05 13:42:52 +08:00
|
|
|
}
|