index.js 304 B

12345678910
  1. import EmTableList from './src/main';
  2. import Vue from 'vue'
  3. import {shortcutKeys} from '../../src/tools/directives'
  4. Vue.directive('shortcutKeys',shortcutKeys)
  5. /* istanbul ignore next */
  6. EmTableList.install = function(Vue) {
  7. Vue.component(EmTableList.name, EmTableList);
  8. };
  9. export default EmTableList;