12345678910111213141516171819202122 |
- import Vue from 'vue'
- import App from './App'
- import Fly from 'flyio/dist/npm/wx'
- import store from '@/store/index'
- var fly = new Fly()
- fly.config.baseURL = "https://testapi.shuimuai.com/"
- fly.config.headers = {
- access_token:11,
- // 'Content-Type':'multipart/form-data; boundary=AaB03x'
- 'content-type':'application/x-www-form-urlencoded'
- }
- Vue.prototype.$fly = fly
- Vue.prototype.$store = store
- Vue.config.productionTip = false
- App.mpType = 'app'
- const app = new Vue(App)
- app.$mount()
|