mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
13 lines
337 B
TypeScript
13 lines
337 B
TypeScript
import type { Component, Plugin } from 'vue';
|
|
import * as components from './components';
|
|
|
|
export interface N8nPluginOptions {}
|
|
|
|
export const N8nPlugin: Plugin<N8nPluginOptions> = {
|
|
install: (app) => {
|
|
for (const [name, component] of Object.entries(components)) {
|
|
app.component(name, component as unknown as Component);
|
|
}
|
|
},
|
|
};
|