新建了一个config.js文件
const baseUrl = 'http://192.168.0.111:88'
export default {
baseUrl
}
在main.js中引用:
import { baseUrl } from '@/common/js/config.js'
Vue.prototype.baseUrl = baseUrl
然后在app.vue中的onLaunch方法中调用:
this.baseUrl
一直提示:TypeError: Cannot read property 'baseUrl' of undefined
0 个回复