I'm trying to get the url for some component.
Firstly I'm trying to get URL tree by calling:
router.createUrlTree(['Dashboard'])
After that I'm calling toString
method to get url for calling the component, but I get following string:
"/pages;0=Dashboard"
I don't understand where does ;0=
part come from? What is it? Anybody have explanation?
I defined pages route and dashboard as child of the pages route.