10 lines
297 B
TypeScript
Executable File
10 lines
297 B
TypeScript
Executable File
import { markRaw } from 'vue';
|
|
import { defineFrontendExtension } from '@n8n/extension-sdk/frontend';
|
|
import InsightsDashboard from './InsightsDashboard.vue';
|
|
|
|
export default defineFrontendExtension({
|
|
setup(n8n) {
|
|
n8n.registerComponent('InsightsDashboard', markRaw(InsightsDashboard));
|
|
},
|
|
});
|