饭侠三十六main.js

/**
 * Created by wensonsmith on 2017/12/5.
 */

import Vue from 'vue'
import axios from 'axios'
import Qs from 'qs'

import router from './src/router'
import store from './src/store'

import App from './app.vue'
import Icon from 'vue-svg-icon/Icon.vue'
import VueAwesomeSwiper from 'vue-awesome-swiper'
import 'swiper/dist/css/swiper.css'


import  { ToastPlugin,WechatPlugin,LoadingPlugin,AlertPlugin } from 'vux'
Vue.use(VueAwesomeSwiper)
Vue.use(WechatPlugin)
Vue.use(ToastPlugin)
Vue.use(LoadingPlugin)
Vue.use(AlertPlugin)
let http = axios.create({
    timeout: 5000,
    responseType: 'json', // default
    headers: {
        'Content-Type': 'application/x-www-form-urlencoded;charset=UTF-8'
    },
    params:{
      openid:_global.openId
    },
    transformRequest: [(data) => {
        return Qs.stringify(data)
    }],
    withCredentials: false,
});

Vue.component('icon', Icon)
Vue.prototype.$http = http

new Vue({
    el: '#app',
    router,
    store,
    render: h => h(App)
})

猜你喜欢

转载自www.cnblogs.com/MR-cui/p/8918807.html