1. 程式人生 > >vue中如何定義全域性函式

vue中如何定義全域性函式

//在mian.js中寫入函式 Vue.prototype.changeData = function (){   alert('執行成功'); } //在所有元件裡可呼叫函式 this.changeData();