The code example in the documentation doesn't work (Vue 3):
import { dragDirective } from '@vueuse/gesture'
export default {
directives: {
drag: dragDirective,
},
}
Since Vue expects an object for directive definition, the following code works:
import { dragDirective } from '@vueuse/gesture'
export default {
directives: {
drag: dragDirective(),
},
}