import Vue from 'vue'; const Plugin = { install(vue, options) { // 4. 添加实例方法 vue.prototype.$limit = 5; }, }; Vue.use(Plugin);