慕森王
写个插件,给Vue.prototype挂上常量,如果仅仅是常量和基础类库,难道不是写一个公共的 util.js export出去,然后到处require就可以了util.jsexport default{install(Vue,options){Vue.prototype.getData = function () {console.log('我是插件中的方法');}}}main.js 引入 并且全局注册import util from './util'Vue.use(util);其他组件中使用this.getData();