10 lines
297 B
TypeScript
10 lines
297 B
TypeScript
|
|
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));
|
||
|
|
},
|
||
|
|
});
|