码迷,mamicode.com
首页 > Web开发 > 详细

饭侠三十六main.js

时间:2018-04-23 15:40:02      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:hat   created   wechat   pen   bsp   svg   prototype   headers   rtp   

/**
 * 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)
})

 

饭侠三十六main.js

标签:hat   created   wechat   pen   bsp   svg   prototype   headers   rtp   

原文地址:https://www.cnblogs.com/MR-cui/p/8918807.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!