vue如何定义全局变量和全局方法实例代码
开发中会经常用到一些常用的变量和方法 例如ajax这种
一、给vue定义全局变量
1.定义专用模块来配置全局变量
定义一个专用模块来配置全局变量,然后通过export暴露出去,在需要的组件引入global.vue
// 定义一些公共的属性和方法 const httpUrl = 'http://test.com' // 暴露出这些属性 export default { httpUrl, }
引入及使用
<script> // 导入共用组件 import global from './global.vue' export default { data () { return { //使用 globalUrl: global.httpUrl } } } </script>
2.通过全局变量挂载到Vue.prototype
同上,定义一个专用模块来配置全局变量,然后通过export暴露出去,在需要的组件引入global.vue
// 定义一些公共的属性和方法 const httpUrl = 'http://test.com' // 暴露出这些属性 export default { httpUrl, }
在main.js中引入并复制给vue
// 导入共用组件 import global from './global.vue' Vue.prototype.global = global
组件调用
export default { data () { return { // 赋值使用, 可以使用this变量来访问 globalHttpUrl: this.global.httpUrl } }
3.使用vuex
安装:
npm install vuex --save
新建store.js文件
import Vue from 'vue' import Vuex from 'vuex'; Vue.use(Vuex); export default new Vuex.Store({ state:{ httpUrl:'http://test.com' } })
main.js中引入
import store from './store' new Vue({ el: '#app', router, store, components: { App }, template: '<App/>' });
组件内调用
console.log(this.$store.state.httpUrl)
二、给vue定义全局方法
1.将方法挂载到 Vue.prototype 上面
简单的函数可以直接写在main.js
文件里定义。
// 将方法挂载到vue原型上 Vue.prototype.changeData = function (){ alert('执行成功'); }
使用方法
//直接通过this运行函数,这里this是vue实例对象 this.changeData();
2. 利用全局混入 mixin
新建一个mixin.js文件
export default { data() { }, methods: { randomString(encode = 36, number = -8) { return Math.random() // 生成随机数字, .toString(encode) // 转化成36进制 .slice(number) } } }
// 在项目入口 main.js 里配置
import Vue from 'vue' import mixin from '@/mixin' Vue.mixin(mixin)
// 在组件中使用
export default { mounted() { this.randomString() } }
3. 使用插件方式
plugin.js
文件,文件位置可以放在跟main.js
同一级,方便引用
exports.install = function (Vue, options) { Vue.prototype.test = function (){ console.log('test'); }; };
main.js
引入并使用。
import plugin from './plugin' Vue.use(plugin);
所有的组件里就可以调用该函数。
this.test();
总结
到此这篇关于vue如何定义全局变量和全局方法的文章就介绍到这了,更多相关vue定义全局变量和全局方法内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
vue elementUI之this.$confirm的使用方式
这篇文章主要介绍了vue elementUI之this.$confirm的使用方式,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教2023-08-08ant 菜单组件报错Cannot read property ‘isRootMenu‘ of undefin
这篇文章主要介绍了ant 菜单组件报错Cannot read property ‘isRootMenu‘ of undefined解决,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-08-08vue+element-ui集成随机验证码+用户名+密码的form表单验证功能
在登入页面,我们往往需要通过输入验证码才能进行登入,那我们下面就详讲一下在vue项目中如何配合element-ui实现这个功能,需要的朋友可以参考下2018-08-08Vue中commit和dispatch区别及用法辨析(最新)
在Vue中,commit和dispatch是两个用于触发Vuex store中的mutations和actions的方法,这篇文章主要介绍了Vue中commit和dispatch区别及其用法辨析,需要的朋友可以参考下2024-06-06
最新评论