UNPKG

@cran/lib.vue.ref

Version:

Vue Reactivity Extensions

7 lines (6 loc) 146 B
import type { ComputedRef, Ref } from "vue"; /** * @since 0.1.3 * @category Utility */ export type RefLike<T = any> = ComputedRef<T> | Ref<T>;