package uirouter
Type Members
-
class
Route
extends Object
$route is used for deep-linking URLs to controllers and views (HTML partials).
$route is used for deep-linking URLs to controllers and views (HTML partials). It watches $location.url() and tries to map the path to an existing route definition.
- Annotations
- @RawJSType() @native()
- See also
-
trait
RouteCurrent
extends Object
Reference to the current route definition.
Reference to the current route definition. The route definition contains:
- controller: The controller constructor as define in route definition
- locals: A map of locals which is used by $controller service for controller instantiation. The locals contain the resolved values of the resolve map. Additionally the locals also contain:
- $scope - The current route scope.
- $template - The current route template HTML.
- Annotations
- @RawJSType() @native()
-
trait
RouteProvider
extends Object with Provider[Route]
Route Provider - Used for configuring routes.
Route Provider - Used for configuring routes.
- Annotations
- @RawJSType() @native()
- See also
https://docs.angularjs.org/api/ngRoute/provider/$routeProvider
-
class
RouteTo
extends Object
Type-Safe AngularJS Route
Type-Safe AngularJS Route
- Annotations
- @RawJSType() @ScalaJSDefined()