navigateAsync()
Handles navigation to a provided path, from the current activity.
protected navigateAsync(target: StringConvertible): Promise<void>;
Notes
- This method is called automatically by the onNavigate event handler when a view object emits the
Navigateevent while this activity is active. - The default implementation directly calls NavigationContext.navigateAsync(). Override this method to handle navigation differently, e.g. to replace the current path for detail view activities.
- Relative paths (starting with
.) are resolved against the current navigation path using NavigationContext.resolve().
Related
class Activity
A class that represents a part of the application that can be activated when the user navigates to it.
