n8n/packages/design-system/src/plugin.ts

19 lines
486 B
TypeScript

import type { Component, Plugin } from 'vue';
import * as components from './components';
import * as directives from './directives';
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);
}
for (const [name, directive] of Object.entries(directives)) {
app.directive(name, directive);
}
},
};