Skip to content

useToString

反应式性地将引用转换为字符串。

¥Reactively convert a ref to string.

用法

¥Usage

ts
import { useToString } from '@vueuse/core'
import { shallowRef } from 'vue'

const number = shallowRef(3.14)
const str = useToString(number)

str.value // '3.14'

类型声明

typescript
/**
 * Reactively convert a ref to string.
 *
 * @see https://vueuse.org/useToString
 */
export declare function useToString(
  value: MaybeRefOrGetter<unknown>,
): ComputedRef<string>

源代码

源代码文档

变更日志

v12.8.0 on 3/5/2025
7432f - feat(types): deprecate MaybeRef and MaybeRefOrGetter in favor of Vue's native (#4636)

VueUse v13.0 中文网 - 粤ICP备13048890号