chore: consolidate new foundation and archive v1 (#1495)
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
---
|
||||
category: '@Router'
|
||||
---
|
||||
|
||||
# useRouteHash
|
||||
|
||||
Shorthand for a reactive `route.hash`.
|
||||
|
||||
## Usage
|
||||
|
||||
```ts
|
||||
import { useRouteHash } from '@vueuse/router';
|
||||
|
||||
const search = useRouteHash();
|
||||
|
||||
console.log(search.value); // route.hash
|
||||
search.value = 'foobar'; // router.replace({ hash: 'foobar' })
|
||||
```
|
||||
|
||||
## Type Declarations
|
||||
|
||||
```ts
|
||||
export declare function useRouteHash(
|
||||
defaultValue?: MaybeRefOrGetter<RouteHashValueRaw>,
|
||||
{ mode, route, router }?: ReactiveRouteOptions,
|
||||
): Ref<RouteHashValueRaw, RouteHashValueRaw>;
|
||||
```
|
||||
Reference in New Issue
Block a user