Lime Web Components API Documentation - v7.4.0
    Preparing search index...

    Class NavigateCommand

    Navigates to a new location

    navigator.navigate

    Implements

    Index

    Constructors

    Properties

    Constructors

    Properties

    hash?: string

    URL fragment identifier (hash)

    The hash portion of the URL, including the leading # character.

    path?: string

    The URL path

    The path portion of the URL, not including query parameters or hash.

    query?: Record<string, unknown>

    Parsed URL query parameters

    Query string parameters parsed as an object. Values are automatically parsed using JSON.parse() when possible, allowing for typed values.

    state?: unknown

    Navigation state attached to this location

    Custom state data stored with this history entry. State is not visible in the URL and is preserved when navigating back/forward through history.

    Useful for passing context between routes without exposing it in the URL.