Skip to content

get

Category
Export Size
117 B
Last Changed
7 months ago

Shorthand for accessing ref.value

Usage

ts
import { 
get
} from '@vueuse/core'
const
a
=
ref
(42)
console
.
log
(
get
(
a
)) // 42

Type Declarations

ts
/**
 * Shorthand for accessing `ref.value`
 */
export declare function 
get
<
T
>(
ref
:
MaybeRef
<
T
>):
T
export declare function
get
<
T
,
K
extends keyof
T
>(
ref
:
MaybeRef
<
T
>,
key
:
K
,
):
T
[
K
]

Source

SourceDocs

Contributors

Anthony Fu
Anthony Fu
RYGRIT
Robin

Changelog

2d179 - fix(types): use Vue's native MaybeRef and MaybeRefOrGetter instead (#4913)
c1d6e - feat(shared): ensure return types exists (#4659)
0a9ed - feat!: drop Vue 2 support, optimize bundles and clean up (#4349)