Replies: 1 comment
-
Combine Vue Classical (virtual DOM) and Vue Vapor (non-virtual DOM), it has been our plan all along. You can see this link: https://blog.vuejs.org/posts/2022-year-in-review#vapor-mode |
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
-
Is there a way to combine virtual DOM and native DOM operations? Compile relatively simple and "static" reactive operations into native DOM operations, while continuing to use virtual DOM for some more complex and "dynamic" operations.
This is a way of "hydration", where part of the reactions are compiled into native DOM operations by vapor at compile time to improve performance, while the more complex parts are handled by the runtime virtual DOM.
This allows for the benefits of both.
Beta Was this translation helpful? Give feedback.
All reactions