9 lines
182 B
TypeScript
9 lines
182 B
TypeScript
import type { Plugin } from 'vue';
|
|
import VueTouchEvents from 'vue3-touch-events';
|
|
|
|
export const GlobalDirectivesPlugin: Plugin = {
|
|
install(app) {
|
|
app.use(VueTouchEvents);
|
|
},
|
|
};
|