-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
084f4c4
commit af32755
Showing
2 changed files
with
80 additions
and
79 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,83 @@ | ||
import components from './components/index' | ||
/** | ||
* IMPORT COMPONENTS | ||
*/ | ||
import fullScreenContainer from './components/fullScreenContainer/index' | ||
import loading from './components/loading/index' | ||
|
||
// border box | ||
import borderBox1 from './components/borderBox1/index' | ||
import borderBox2 from './components/borderBox2/index' | ||
import borderBox3 from './components/borderBox3/index' | ||
import borderBox4 from './components/borderBox4/index' | ||
import borderBox5 from './components/borderBox5/index' | ||
import borderBox6 from './components/borderBox6/index' | ||
import borderBox7 from './components/borderBox7/index' | ||
import borderBox8 from './components/borderBox8/index' | ||
import borderBox9 from './components/borderBox9/index' | ||
|
||
// decoration | ||
import decoration1 from './components/decoration1/index' | ||
import decoration2 from './components/decoration2/index' | ||
import decoration3 from './components/decoration3/index' | ||
import decoration4 from './components/decoration4/index' | ||
import decoration5 from './components/decoration5/index' | ||
import decoration6 from './components/decoration6/index' | ||
import decoration7 from './components/decoration7/index' | ||
import decoration8 from './components/decoration8/index' | ||
import decoration9 from './components/decoration9/index' | ||
import decoration10 from './components/decoration10/index' | ||
|
||
// charts | ||
import charts from './components/charts/index' | ||
|
||
import activeRingChart from './components/activeRingChart' | ||
import waterLevelPond from './components/waterLevelPond/index' | ||
import percentPond from './components/percentPond/index' | ||
import flylineChart from './components/flylineChart' | ||
import conicalColumnChart from './components/conicalColumnChart' | ||
import digitalFlop from './components/digitalFlop' | ||
import scrollBoard from './components/scrollBoard/index' | ||
import scrollRankingBoard from './components/scrollRankingBoard/index' | ||
|
||
/** | ||
* USE COMPONENTS | ||
*/ | ||
export default function (Vue) { | ||
components(Vue) | ||
Vue.use(fullScreenContainer) | ||
Vue.use(loading) | ||
|
||
// border box | ||
Vue.use(borderBox1) | ||
Vue.use(borderBox2) | ||
Vue.use(borderBox3) | ||
Vue.use(borderBox4) | ||
Vue.use(borderBox5) | ||
Vue.use(borderBox6) | ||
Vue.use(borderBox7) | ||
Vue.use(borderBox8) | ||
Vue.use(borderBox9) | ||
|
||
// decoration | ||
Vue.use(decoration1) | ||
Vue.use(decoration2) | ||
Vue.use(decoration3) | ||
Vue.use(decoration4) | ||
Vue.use(decoration5) | ||
Vue.use(decoration6) | ||
Vue.use(decoration7) | ||
Vue.use(decoration8) | ||
Vue.use(decoration9) | ||
Vue.use(decoration10) | ||
|
||
// charts | ||
Vue.use(charts) | ||
|
||
Vue.use(activeRingChart) | ||
Vue.use(waterLevelPond) | ||
Vue.use(percentPond) | ||
Vue.use(flylineChart) | ||
Vue.use(conicalColumnChart) | ||
Vue.use(digitalFlop) | ||
Vue.use(scrollBoard) | ||
Vue.use(scrollRankingBoard) | ||
} |