a17121a5ad74d158f501ac92d0477bc566506ac7.svn-base 300 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