mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-02 07:01:30 -08: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);
|
|
}
|
|
},
|
|
};
|