main.js 303 B

1234567891011121314151617
  1. import Vue from 'vue'
  2. import App from './App'
  3. import './plugins/index' //
  4. Vue.config.productionTip = false
  5. App.mpType = 'app'
  6. const app = new Vue({
  7. ...App
  8. })
  9. import httpServer from "./libs/utils/http-2.js"
  10. Vue.prototype.$get = httpServer.get
  11. Vue.prototype.$post = httpServer.post
  12. app.$mount()