uniapp中定义全局变量的一个方法是在main.js中挂载,以实现全局的引用。

1.main.js中 

 //全局挂载  prototype方法.要引用变量的名,赋值服务器地址等
Vue.prototype.serviceUrl = "abccc"

2.引用界面中

直接用this.变量名即可引用。

var me = this;

console.log(me.serviceUrl); 

 

 

 

Logo

Vue社区为您提供最前沿的新闻资讯和知识内容

更多推荐