mirror of
https://github.com/weilanwl/coloruicss.git
synced 2026-03-07 14:34:02 +08:00
21 lines
398 B
JavaScript
21 lines
398 B
JavaScript
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 custom from './pages/custom/custom.vue'
|
|
Vue.component('custom',custom)
|
|
|
|
Vue.config.productionTip = false
|
|
|
|
App.mpType = 'app'
|
|
|
|
const app = new Vue({
|
|
...App
|
|
})
|
|
app.$mount()
|