take websites made of Vue as an example.
 Baimi Wallet  https://www.bmqb.com/a/safety
( website comes from the sponsor of the official Vue.js website) 
 brief 
 Nuggets. 
I don"t know why. I always feel that these vue sites can be seen at a glance that they are made with vue, especially when switching between pages with different titles. I always feel that when rendering a page, there is a feeling that a little picture and text pop up separately, rather than rendering it at once. Compared with react, it always looks cheap, uncomfortable, not so smooth and beautiful. Am I the only one who feels this way? Is it an illusion?
 = 
 look at the source code of vue and understand that this phenomenon is caused by the delay in the rendering of {{}} in template replaced by Vue. If you directly use the render method or use React directly, you will not have this problem of affecting the visual effect. 
