index.js 287 B

12345678910111213
  1. import adaptive from './adaptive'
  2. const install = function(Vue) {
  3. Vue.directive('el-height-adaptive-table', adaptive)
  4. }
  5. if (window.Vue) {
  6. window['el-height-adaptive-table'] = adaptive
  7. Vue.use(install); // eslint-disable-line
  8. }
  9. adaptive.install = install
  10. export default adaptive