directive.js 193 B

123456789
  1. import resize from './resize'
  2. const importDirective = Vue => {
  3. /**
  4. * Window大小变化回调 v-resize='function'
  5. */
  6. Vue.directive('resize', resize)
  7. }
  8. export default importDirective