Rete.js plugin for rendering node editors using Vue.js 2.x or 3.x components. Version 0.5.2 is current, with maintenance-level updates based on GitHub activity (last release Oct 2023). Differs from alternatives by tight integration with Rete.js visual programming framework, offering Vue template-based node customization, reactive updates, and slot support. Not compatible with Vue 3 without specific configuration; requires matching major version of Rete.js (e.g., rete@1.x).
npm install rete-vue-render-pluginNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Initializes Rete editor with Vue render plugin and registers a numeric node component (Vue 2).
Pass vue option with mounted Vue app instance (Vue 2) or createApp (Vue 3).
Mount Vue app before passing to plugin; use createApp for Vue 3.
Use VueRenderPlugin instead of VuePlugin.
Ensure vue option is provided: editor.use(VueRenderPlugin, { vue: app }) where app is a mounted Vue instance.Register component with editor.register(new NumComponent(...)) before editor.addNode.
Mount Vue app after plugin use; ensure plugin installs the rete-node component globally.