var.js 152 B

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