Skip to content
On this page

useToString

Reactively convert a ref to string.

Usage

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

/**
 * 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
Last Changed
3 weeks ago

SourceDocs

Contributors

Changelog

v9.1.0 on 8/4/2022
2b869 - feat: new function

Released under the MIT License.