mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-21 20:00:02 +00:00
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));
|
|
},
|
|
});
|