main.js 317 B

123456789101112131415
  1. import Vue from 'vue'
  2. import App from './App'
  3. import http from './http/index.js'
  4. import api from 'http/api.js'
  5. Vue.config.productionTip = false
  6. App.mpType = 'app'
  7. Vue.prototype.$api = api
  8. Vue.prototype.$http = http
  9. Vue.prototype.$imgDomain = 'http://manghe4.tuana.cn/'
  10. const app = new Vue({
  11. ...App
  12. })
  13. app.$mount()