1
2
3
4
5
6
7
8
9
10
11
12
| import dialogDrag from './dialog/drag'
| import dialogDragWidth from './dialog/dragWidth'
| import dialogDragHeight from './dialog/dragHeight'
|
|
| const install = function(Vue) {
| Vue.directive('dialogDrag', dialogDrag)
| Vue.directive('dialogDragWidth', dialogDragWidth)
| Vue.directive('dialogDragHeight', dialogDragHeight)
| }
|
| export default install
|
|