DEV Community

hunzombi
hunzombi

Posted on

1 1 1 1 1

Vue's Virtual DOM

Vue's Virtual DOM enables you applications to be scaled easily. It enables efficient communication with the DOM. It simplifies UI state management by serving as a predictable intermediary.
The Virtual DOM minimizes direct DOM interactions. The VDOM calculates the difference between UI states before applying them, due to this only parts that need change are updated. The VDOM can also batch chages to prevent performance bottlenecks where if the changes were uploaded in succession as each of the chages can force a reflow or repaint.
The VDOM also optimizes re-rendering by removing lag or stuttering.

I keep learning everyday :)

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay