Developer Preview Feature
DID THIS ARTICLE SOLVE YOUR ISSUE?
Let us know so we can improve!
Let us know so we can improve!
Navigates to a page reference programmatically.
| Method Input | Type | Required/Optional | Description |
|---|---|---|---|
context | String | Required | The ID of the parent router container nearest to the component that’s generating a URL. A ContextId is an opaque value that you get from the NavigationContext wire. |
pageReference | String | Required | The PageReference value for which to generate a URL. |
replace | Boolean | Optional | If set to true, navigate() replaces the current history entry with the location passed in the method parameters. |
1import { LightningElement, api, wire } from 'lwc';
2import { NavigationContext, navigate } from 'lwr/navigation';
3import type { ContextId, PageReference } from 'lwr/navigation';
4
5navigate(
6 context: ContextId,
7 pageReference: PageReference,
8 replace?: boolean
9 ): voidSee Also
Developer Preview Feature