Page
Page
defines route endpoints within an application, mapping specific URL patterns to content that displays when users navigate to those routes. Each Page represents a distinct view or screen in your single-page application's routing system.Key features:
- Navigation: Activated by NavLink or programmatic navigation (
Actions.navigate()
) - Content container: Wraps any XMLUI components to define what displays for each route
- URL pattern matching: Maps exact URLs or dynamic patterns with parameters to specific content
- Route parameters: Supports dynamic URL segments (e.g.,
/user/:id
) accessible via$routeParams
- Query parameter access: Retrieves URL query parameters through
$queryParams
context variable
Properties
url
The URL of the route associated with the content. If not set, the page is not available.
Events
This component does not have any events.
Exposed Methods
This component does not expose any methods.
Styling
This component does not have any styles.