Rumah > Artikel > hujung hadapan web > 使用vue.js怎么定义全局变量
使用vue.js定义全局变量的方法:首先单独新建一个全局变量模块文件,模块中定义一些变量初始状态;然后在【main.js】中引入,并通过【Vue.prototype】挂载到vue实例上面。
本教程操作环境:windows7系统、Vue2.9.6版,DELL G3电脑。
【相关文章推荐:vue.js】
使用vue.js定义全局变量的方法:
原理:
1. 单独新建一个全局变量模块文件,模块中定义一些变量初始状态,用export default暴露出去。
2. 在main.js中引入,并通过Vue.prototype
挂载到vue实例上面。供其他模块文件使用;
3. 或者直接引入到需要的模块文件中使用;
步骤一、定义一个全局组件 Global.vue,里面只有3f1c4e4b6b16bbbd69b2ee476dc4f83a
<!--设置全局变量--> <script> //接口地址 const BASE_URL = 'http://118.189.105.152:7181/qianzhang-transf/index/'; //定义全局接口地址 //请求头部 const reqHead = { "transDate": "20180816", "encryptFlag": "1", "seqNo": "2018081628507127", "serviceID": "loanLmtQryHXMKL", "transTime": "174341", "channelID": "netbank" } export default { //将常量暴露出去 BASE_URL, reqHead, } </script>
步骤二、修改原型链
// The Vue build version to load with the `import` command // (runtime-only or standalone) has been set in webpack.base.conf with an alias. import Vue from 'vue' import App from './App' import router from './router' import fastclick from 'fastclick' import global_ from './components/Global.vue' //引入全局组件 Vue.prototype.GLOBAL = global_; //修改原型 Vue.config.productionTip = false /* eslint-disable no-new */ new Vue({ el: '#app', router, components: { App }, template: '<App/>' })
步骤三、使用
在需要 的vue页面直接使用 this.GLOBAL.BASE_URL
,就可以获取到定义常量值
相关免费学习推荐:javascript(视频)
Atas ialah kandungan terperinci 使用vue.js怎么定义全局变量. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!