I would like to load a view manually without navigating to it. so in my code the following:
router.navigate(url);
loads the view and also activates it and navigate to it. I wan all of these except I don't wanna navigate to it. So I want something like this:
router.load(url);
Can anybody help me?