this post was submitted on 03 Feb 2024
5 points (100.0% liked)
Programmer Humor
32461 readers
453 users here now
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.
founded 5 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
I’m guessing they aren’t using Vue, React, or similar, and they’re rolling their own for some reason.
React doesn't handle any of this stuff out-of-the-box; it's just a UI library.
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
.It’s one install line ffs, how is this a conversation in 2024? It’s EASY.