在vue中定義全局方法的方法:1.利用全局混入mixin定義;2.通過prototype掛載定義;3.使用Plugin方法定義;4.直接在vue文件中定義;
具體方法如下:
1.利用全局混入mixin定義全局方法
Vue.mixin(mixin)
new Vue({
store,
router,
render: h => h(App),
}).$mount('#app')
2.通過prototype掛載定義全局方法
Object.keys(tools).forEach(key => {
Vue.prototype[key] = tools[key]
})
3.使用Plugin方法定義全局方法
const install = function (Vue, opts) {
Vue.prototype.$pluginDemo = function () {
console.log('')
}
}
export default {
install
}
4.直接在vue文件中定義全局方法
//定義全局方法
this.$root.$on('test',function(){
console.log("test")
})
//銷毀全局方法
this.$root.$off("test')
//調用全局方法
this.$root.$emit("test")