Files
ionic-framework/core/src/components/nav-link
Brandy Carney 07d5f77584 refactor(nav): remove nav-push, nav-pop nav-root (#19240)
BREAKING CHANGES

Removes ion-nav-pop, ion-nav-push and ion-nav-set-root in favor of using ion-nav-link with router-direction
2019-10-10 14:34:16 -04:00
..

ion-nav-link

A navigation link is used to navigate to a specified component. The component can be navigated to by going forward, back or as a root component.

It is the element form of calling the push(), pop(), and setRoot() methods on the navigation controller.

Properties

Property Attribute Description Type Default
component component Component to navigate to. Only used if the routerDirection is "forward" or "root". Function | HTMLElement | ViewController | null | string | undefined undefined
componentProps -- Data you want to pass to the component as props. Only used if the "routerDirection" is "forward" or "root". undefined | { [key: string]: any; } undefined
routerDirection router-direction The transition direction when navigating to another page. "back" | "forward" | "root" 'forward'

Built with StencilJS