look at many virtual dom on the Internet, after comparing the new and old trees, the corresponding update to dom.
I think the key to performance optimization is the dom operation.
for example, in native writing, if I modify the contents of a row in table, I will definitely find a way to modify that line or even a td, directly instead of replacing the entire table. Can you say that vue,react will be faster than this?
and react will have a lot of update state operations, put them in the queue, and update the dom in the last block. In that case, will it be very stuck for a certain period of time when there is a large amount of updated data?