Relative Content

Tag Archive for vue.jsvuejs3vue-routervue-router4

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 […]