react-router-component
react-router-component copied to clipboard
Navigate relative to page root
I have a contextual router using the NavigatableMixin mixin at /foo. I want to do this.navigate from this router to /bar/baz, however when I do this.navigate('/bar/baz') it navigates to /foo/bar/baz. Is there a way I can pass a { global: true } option to this.navigate or something similar, or is this not currently supported?
Using the <Link> component instead of ?