Skip to content
On this page

useToString

Category
Export Size
195 B
Last Changed
7 months ago

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

SourceDocs

Contributors

Anthony Fu

Changelog

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

Released under the MIT License.