2023-01-11 16:33:13 +08:00
|
|
|
import App from './App'
|
|
|
|
|
|
|
|
|
|
import util from './common/js/util'
|
|
|
|
|
import request from './common/js/request'
|
|
|
|
|
import config from './common/js/config'
|
2023-02-09 08:50:01 +08:00
|
|
|
import cacheKey from './common/js/cacheKey'
|
2023-01-11 16:33:13 +08:00
|
|
|
import Vue from 'vue'
|
|
|
|
|
import share from "@/common/js/share.js";
|
2023-07-24 08:47:20 +08:00
|
|
|
|
2023-01-11 16:33:13 +08:00
|
|
|
Vue.config.productionTip = false
|
|
|
|
|
Vue.prototype.$request = request
|
|
|
|
|
Vue.prototype.$util = util
|
|
|
|
|
Vue.prototype.$config = config
|
2023-02-09 08:50:01 +08:00
|
|
|
Vue.prototype.$cacheKey = cacheKey
|
2023-01-11 16:33:13 +08:00
|
|
|
Vue.mixin(share);
|
|
|
|
|
App.mpType = 'app'
|
|
|
|
|
const app = new Vue({
|
|
|
|
|
...App
|
|
|
|
|
})
|
|
|
|
|
app.$mount()
|
|
|
|
|
|