Files
LSM_OIL_SITE/main.js
xk_yangdeshi 8feae367f5 临时提交
2020-08-18 17:19:08 +08:00

17 lines
339 B
JavaScript

import Vue from 'vue'
import App from './App'
import cuCustom from './colorui/components/cu-custom.vue'
import encode from '@/utils/encode'
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()