mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 11:49:59 +00:00
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);
|
|
},
|
|
};
|