vue placed baseurl

config folder New global.js

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

main.js added to the global

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

Components in use:

  created() {
     console.log(this.GLOBAL.BASE_URL)
 },

 

Published 180 original articles · won praise 36 · views 80000 +

Guess you like

Origin blog.csdn.net/weixin_38404899/article/details/103800080