在 Vuejs 项目中如何定义全局变量
原理:
1. 单独新建一个全局变量模块文件,模块中定义一些变量初始状态,用export default 暴露出去。
2. 在main.js中引入,并通过Vue.prototype挂载到vue实例上面;供其他模块文件使用。
3. 或者直接引入到需要的模块文件中使用;
步骤一、定义一个全局组件 Global.vue,里面只有<script>
<!--设置全局变量--> <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,就可以获取到定义常量值
更多web开发知识,请查阅 HTML中文网 !!
以上就是vue.js中如何定义全局变量?的详细内容,更多请关注易知道|edz.cc其它相关文章!