当前位置:主页 > 网页前端 > vue >
时间:2021-02-15 10:24:23 | 栏目:vue | 点击:次
如果你需要让一个工具函数在每个组件可用,可以把方法挂载到 Vue.prototype上。
在main.js中:
Vue.prototype.method = function () {}
组件中调用:
this.method()