• Takes an inner value and returns a reactive and mutable ref object, which has a single property .value that points to the inner value.

    See

    https://vuejs.org/api/reactivity-core.html#ref

    Type Parameters

    • T extends Ref<any, T>

    Parameters

    • value: T

      The object to wrap in the ref.

    Returns T

  • Type Parameters

    • T

    Parameters

    • value: T

    Returns Ref<UnwrapRef<T>>

  • Type Parameters

    • T = any

    Returns Ref<T | undefined>

Generated using TypeDoc