Skip to content
On this page

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'
import { useToString } from '@vueuse/core'

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

str.value // '3.14'

Type Declarations

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

Source

Category
Export Size
195 B
Last Changed
8 months ago

SourceDocs

贡献者(Contributors)

日志(Changelog)

No recent changes

Released under the MIT License.