import type { Component, Plugin } from 'vue'; import * as components from './components'; export interface N8nPluginOptions {} export const N8nPlugin: Plugin = { install: (app) => { for (const [name, component] of Object.entries(components)) { app.component(name, component as unknown as Component); } }, };