vue 配置baseurl
程序员文章站
2022-04-12 11:53:11
...
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)
},
上一篇: Node之HTTP发送服务器端响应流
下一篇: Python程序设计之爬虫读取(1)
推荐阅读