li-guang
2020-12-25 c94eed22ac10480428d5b711bfd90ff746f42d2b
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import Vue from 'vue'
import App from './App'
import httpUtils from './common/jssdk/httpUtils.js'
import utils from './common/jssdk/utils.js'
import toast from './common/jssdk/toast.js'
 
Vue.prototype.$httpUtils = httpUtils
Vue.prototype.$utils = utils
Vue.prototype.$toast = toast
 
Vue.config.productionTip = false
 
App.mpType = 'app'
 
const app = new Vue({
    ...App
})
app.$mount()