You can use ng-click to call a route then routes monitor the $location service and respond to changes in URL. To "activate" a route, you simply change the URL. The easiest way to do that is with anchor tags see the code as follows:-
<a href="#/home">Go Home</a>
<a href="#/about">Go to About</a>
The proper way is by using the $location service:-
$scope.go = function ( path ) {
$location.path( path );
};
It can be triggered by the below-mentioned code:-
<button ng-click="go('/home')"></button>