mirror of
https://github.com/weilanwl/coloruicss.git
synced 2026-03-07 06:24:00 +08:00
29 lines
497 B
JavaScript
Executable File
29 lines
497 B
JavaScript
Executable File
import Vue from 'vue'
|
|
import App from './App'
|
|
|
|
import basics from './pages/basics/home.vue'
|
|
Vue.component('basics',basics)
|
|
|
|
import components from './pages/component/home.vue'
|
|
Vue.component('components',components)
|
|
|
|
import plugin from './pages/plugin/home.vue'
|
|
Vue.component('plugin',plugin)
|
|
|
|
import cuCustom from './colorui/components/cu-custom.vue'
|
|
Vue.component('cu-custom',cuCustom)
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
App.mpType = 'app'
|
|
|
|
const app = new Vue({
|
|
...App
|
|
})
|
|
app.$mount()
|
|
|
|
|
|
|
|
|
|
|