Neither does vue. You need vue-router, which is required anyway to make an spa with multiple pages.
The only thing that breaks is any component state isn’t saved. But this can be fixed by rendering <RouterView> with <KeepAlive>. How to do this is mentioned in the documentation.
I assume it’s similar with react and react-router-dom.
You are not logged in. However you can subscribe from another Fediverse account, for example Lemmy or Mastodon. To do this, paste the following into the search field of your instance: !programmerhumor@lemmy.ml
Post funny things about programming here! (Or just rant about your favourite programming language.)
Rules:
Posts must be relevant to programming, programmers, or computer science.
No NSFW content.
Jokes must be in good taste. No hate speech, bigotry, etc.
React doesn’t handle any of this stuff out-of-the-box; it’s just a UI library.
It’s one install line ffs, how is this a conversation in 2024? It’s EASY.
Neither does vue. You need
vue-router
, which is required anyway to make an spa with multiple pages.The only thing that breaks is any component state isn’t saved. But this can be fixed by rendering
<RouterView>
with<KeepAlive>
. How to do this is mentioned in the documentation.I assume it’s similar with react and
react-router-dom
.