feat: Add example @n8n/n8n-extension-insights extension package (#14360)

Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
This commit is contained in:
Alex Grozav
2025-04-03 13:10:00 +03:00
committed by GitHub
parent 3d64d140e9
commit b91be496c3
24 changed files with 300 additions and 22 deletions

View File

@@ -0,0 +1,9 @@
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));
},
});