1234567891011121314151617 |
- import Vue from 'vue'
- import App from './App'
- import './plugins/index' //
- Vue.config.productionTip = false
- App.mpType = 'app'
- const app = new Vue({
- ...App
- })
- import httpServer from "./libs/utils/http-2.js"
- Vue.prototype.$get = httpServer.get
- Vue.prototype.$post = httpServer.post
- app.$mount()
|