Skip to content

vue-router / RouteLocationNamedRaw

RouteLocationNamedRaw

Internal

Route Location that can infer the necessary params based on the name.

Extends

Properties

force?

ts
optional force: boolean;

Triggers the navigation even if the location is the same as the current one. Note this will also add a new entry to the history unless replace: true is passed.

Inherited from

RouteLocationOptions.force


hash?

ts
optional hash: string;

Inherited from

RouteQueryAndHash.hash


name?

ts
optional name: RouteRecordNameGeneric;

Inherited from

LocationAsRelativeRaw.name


params?

ts
optional params: RouteParamsRawGeneric;

Inherited from

LocationAsRelativeRaw.params


path?

ts
optional path: undefined;

Ignored path property since we are dealing with a relative location. Only undefined is allowed.

Inherited from

LocationAsRelativeRaw.path


query?

ts
optional query: LocationQueryRaw;

Inherited from

RouteQueryAndHash.query


replace?

ts
optional replace: boolean;

Replace the entry in the history instead of pushing a new entry

Inherited from

RouteLocationOptions.replace


state?

ts
optional state: HistoryState;

State to save using the History API. This cannot contain any reactive values and some primitives like Symbols are forbidden. More info at https://developer.mozilla.org/en-US/docs/Web/API/History/state

Inherited from

RouteLocationOptions.state

Released under the MIT License.