在src下创建 untils文件夹,然后在他下面创建index.js文件
index.js是公共方法,任何页面都可以使用的哈
index.js
export default {
install(Vue) {
Vue.prototype.say = function() {
alert("我是全局方法");
};
},
};
main.js
import way from "./utils";
Vue.use(way);
XXX.vue
this.say() 直接去调用这个方法