在main.js里進行全局注冊
Vue.prototype.ajax = function (){}
在所有組件里可調用
this.ajax
// xxx.js 組件 exports.install = function (Vue, options) { Vue.prototype.ajax = function (){ alert('aaaaaaa'); }; };
// main.js 入口 import xxxx from './commons/xxxx' Vue.use(xxxx);
// ccc.js 子組件 this.ajax();