plugins.js 187 B

123456789
  1. //view-table加载更多
  2. import loadmore from './loadmore';
  3. export default {
  4. async install (Vue, options) {
  5. // 指令
  6. Vue.directive('loadmore', loadmore);
  7. }
  8. }