Best way to implement conditional tabbed routing in vue
What I’m trying to implement is routing with tabs where the available tabs change depending on the user type (upon authentication the user type gets stored in a pinia store).
Escape colon in Vue router wikipedia-style
Context I’ve been trying to replicate what wikipedia does with their URL It works something like /[Namespace]:[PageName] /[PageName] So if I go to /randompage I get as params: namespace: ” page name: ‘randompage’ and if I go to /whatever:anotherpage I get: namespace: ‘whatever’ page name: ‘anotherpage’ Problem My issue lies in not being able to […]