mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2026-08-30 15:20:36 +02:00
14 lines
303 B
TypeScript
14 lines
303 B
TypeScript
import type { Plugin } from 'vue';
|
|
|
|
import * as directives from './directives';
|
|
|
|
export interface N8nPluginOptions {}
|
|
|
|
export const N8nPlugin: Plugin<N8nPluginOptions> = {
|
|
install: (app) => {
|
|
for (const [name, directive] of Object.entries(directives)) {
|
|
app.directive(name, directive);
|
|
}
|
|
},
|
|
};
|