设置全局变量
一、在main.js中引用并挂载common.js
import cc from './common.js' Vue.prototype.$c = cc;
index.vue
{{$c}}//小程序显示undefined,其他上面可以显示,小程序上面需要重新赋值 export default{ data() { return { apiurl:this.$c, } } }
二:app.vue中直接设置globalData
export default { globalData: { text: 'text' } }
indev.vue
this.text=getApp().globalData.text