You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
243 B

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