vue 配置baseurl

config文件夹下 新建global.js

const BASE_URL = 'http://xxxxxxx'
export default {
  BASE_URL
}

main.js添加到全局

import global_ from '../config/global'
Vue.prototype.GLOBAL = global_;

组件里使用:

  created() {
     console.log(this.GLOBAL.BASE_URL)
 },
发布了180 篇原创文章 · 获赞 36 · 访问量 8万+

猜你喜欢

转载自blog.csdn.net/weixin_38404899/article/details/103800080