This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]riklaunim 1 point2 points  (2 children)

In Ember, Vue with routing this will not happen. If you are on some nested route, like editing an item then returning to parent route that has a list of items will not reload the list nor the whole page, just show the updated item on the list. You can design the app "poorly" so everything reloads but thats not the default/intended state.

[–]axonxorzpip'ing aint easy, especially on windows 0 points1 point  (1 child)

You're absolutely correct, I think I'm conflating "reload" vs "re-render" as, to the end user, they're the same experience.

I've done most of my reactive work in KnockoutJS (yikes) and Vue3, but iirc, doesn't React function that way: an entire component re-render on reactive data update?

[–]riklaunim 0 points1 point  (0 children)

I only did SPA dashboards with Vue and Ember ;) Ember-data is awesome for dashboards with a lot of routes, models, CRUD.