Skip to content

useToString

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

¥Reactively convert a ref to string.

用法

¥Usage

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

const number = ref(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>

源代码

源代码文档

变更日志

No recent changes

VueUse 中文网 - 粤ICP备13048890号