I have a component declared in a module and added as a route:
var controller = new Boiler.UrlController($(".appcontent")); controller.addRoutes( { 'artists': new ArtistsComponent(context), 'clubs': new ClubsComponent(context) }); controller.start();
I need to navigate to a component like 'clubs' programmatically. What is the exact syntax, please