(no title)
SSchick | 7 months ago
Sure performance is a concern but is recursive re-rendering really cheaper than memoing all props?
SSchick | 7 months ago
Sure performance is a concern but is recursive re-rendering really cheaper than memoing all props?
mmis1000|7 months ago
But I wonder should it even work at first place? It feels like you are covering the problem instead of actually fix it. Make broken things broken is a lot healthier for the code base in my opinion.
Immediately find out things to be broken is 100x better than find out it suddenly not works and can't even figure out why is it broken months later in my opinion.
Use external value in Vue is very noticeable in contrary to React. Because it will definitely not work even once. The in component computed or component itself both enforce memorize . Render will be skipped completely it you used external values there so the framework did not notice anything is changed.
johnny22|7 months ago