Types: Router<TRoutes, __TOptions>
type Router<TRoutes, __TOptions>: Plugin_2 & object;
Type declaration
back()
back: () => void;
Navigates to the previous entry in the browser's history stack.
Returns
void
forward()
forward: () => void;
Navigates to the next entry in the browser's history stack.
Returns
void
go()
go: (delta) => void;
Moves the current history entry to a specific point in the history stack.
Parameters
Parameter | Type |
---|---|
delta | number |
Returns
void
isExternal()
isExternal: (url) => boolean;
Given a URL, returns true if host does not match host stored on router instance
Parameters
Parameter | Type |
---|---|
url | string |
Returns
boolean
onAfterRouteEnter
onAfterRouteEnter: AddAfterRouteHook;
Registers a hook to be called after a route is entered.
onAfterRouteLeave
onAfterRouteLeave: AddAfterRouteHook;
Registers a hook to be called after a route is left.
onAfterRouteUpdate
onAfterRouteUpdate: AddAfterRouteHook;
Registers a hook to be called after a route is updated.
onBeforeRouteEnter
onBeforeRouteEnter: AddBeforeRouteHook;
Registers a hook to be called before a route is entered.
onBeforeRouteLeave
onBeforeRouteLeave: AddBeforeRouteHook;
Registers a hook to be called before a route is left.
onBeforeRouteUpdate
onBeforeRouteUpdate: AddBeforeRouteHook;
Registers a hook to be called before a route is updated.
prefetch?
optional prefetch: PrefetchConfig;
Determines what assets are prefetched.
push
push: RouterPush<TRoutes>;
Navigates to a specified path or route object in the history stack, adding a new entry.
refresh()
refresh: () => void;
Forces the router to re-evaluate the current route.
Returns
void
reject
reject: RouterReject;
Handles route rejection based on a specified rejection type.
replace
replace: RouterReplace<TRoutes>;
Replaces the current entry in the history stack with a new one.
resolve
resolve: RouterResolve<TRoutes>;
Resolves a URL to a route object.
route
route: RouterRoutes<TRoutes>;
Manages the current route state.
start()
start: () => Promise<void>;
Initializes the router based on the initial route. Automatically called when the router is installed. Calling this more than once has no effect.
Returns
Promise
<void
>
Type Parameters
Type Parameter | Default type |
---|---|
TRoutes extends Routes | any |
__TOptions extends RouterOptions | any |