Skip to content

get ​

Category
Export Size
80 B
Last Changed
6 minutes ago

Shorthand for accessing ref.value

Usage ​

ts
import { get } from '@vueuse/core'

const a = ref(42)

console.log(get(a)) // 42

Type Declarations ​

typescript
/**
 * 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 ​

Source • Docs

Contributors ​

Anthony Fu
Anthony Fu

Changelog ​

v12.0.0-beta.1 on 11/21/2024
0a9ed - feat!: drop Vue 2 support, optimize bundles and clean up (#4349)

Released under the MIT License.