toValue
获取值、ref 或 getter 的值。
用法
ts
import { toValue } from '@vueuse/core'
const foo = ref('hi')
const a = toValue(0) // 0
const b = toValue(foo) // 'hi'
const c = toValue(() => 'hi') // 'hi'
类型声明
typescript
/**
* 获取值、ref 或 getter 的值。
*/
export declare function toValue<T>(r: MaybeRefOrGetter<T>): T
/**
* @deprecated use `toValue` instead
*/
export declare const resolveUnref: typeof toValue
Source
贡献者
Anthony Fu
丶远方
Anthony Fu
变更日志
v10.0.0-beta.4
on 4/13/20234d757
- feat(types)!: rename MaybeComputedRef
to MaybeRefOrGetter
0a72b
- feat: rename resolveUnref
to toValue