main.js 379 Bytes
Newer Older
lanbaoming's avatar
lanbaoming committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
import Vue from 'vue'
import App from './App'

import request from './utils/request.js'
import store from '@/store'
import mixin from '@/mixins/default'

import lang from '@/common/lang.js'

Vue.config.productionTip = false


App.mpType = 'app'
Vue.mixin(mixin)
Vue.prototype.$request = request
Vue.prototype.$lang = lang

const app = new Vue({
  ...App,
  store
})
app.$mount()