首次提交

This commit is contained in:
xk_guohonglei
2020-08-18 15:09:31 +08:00
commit 1f8b3e6e55
57 changed files with 9637 additions and 0 deletions

17
main.js Normal file
View File

@@ -0,0 +1,17 @@
import Vue from 'vue'
import App from './App'
import cuCustom from './colorui/components/cu-custom.vue'
import encode from '@/utils/encode'
import global from '@/api/global.js'
Vue.component('cu-custom',cuCustom)
Vue.config.productionTip = false
App.mpType = 'app'
Vue.prototype.utils = encode
Vue.prototype.global = global
const app = new Vue({
...App
})
app.$mount()