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

类型声明

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]

源代码

源代码文档

变更日志

No recent changes

VueUse 中文网 - 粤ICP备13048890号