Render reactive vue component without using createApp().mount()
#8879
Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I was wondering if there is a way to reuse the main application vue instance instead of creating a new vue instance for each reactive component I programmatically create
Use Case
I want to use vue components to render visuals in a diagramming framework. I have managed to make it work, but I was wondering if there is a better way rather than creating a new
vue app instance
for each visual in the diagram. below is a simplified version of the working code.Simplified code
Solution should avoid creating a new vue instance for each rendered component (only one instance is allowed)
Beta Was this translation helpful? Give feedback.
All reactions