Back to Vueuse

get

packages/shared/get/index.md

14.3.0144 B
Original Source

get

Shorthand for accessing ref.value

Usage

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

const a = ref(42)

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