19 lines
462 B
Plaintext
19 lines
462 B
Plaintext
import Vue from 'vue'
|
|
import App from './App'
|
|
import mixin from 'common/global.js'
|
|
import tools from 'common/tools.js'
|
|
import amapwx from './common/AMapWX_SDK_V1.3.0/amap-wx.130.js'
|
|
import interceptor from '@/common/interceptor.js'
|
|
Vue.prototype.$tools = tools ;//工具类
|
|
Vue.prototype.$amapwx = amapwx;//高德地图类
|
|
// 混入代码
|
|
Vue.mixin(mixin)
|
|
|
|
|
|
// 工具类
|
|
App.mpType = 'app'
|
|
const app = new Vue({
|
|
...App,
|
|
})
|
|
app.$mount()
|