Skip to content

get

访问 ref.value 的简写

¥Shorthand for accessing ref.value

用法

¥Usage

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

const a = ref(42)

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