I would like to be able to fully reload by Angular2 app because something has changed in the data. I could do that in AngularJS through $route.reload()
(or even $state.go($state.current.name, $state.params, {reload: true})
), but I can't find an equivalent now.
I know there's Router.renavigate()
, but that doesn't seem to do much. Is it supposed to do what I'm asking for? Is there another way?