--- category: Utilities --- # get Shorthand for accessing `ref.value` ## Usage ```ts import { get } from '@vueuse/core'; const a = ref(42); console.log(get(a)); // 42 ``` ## Type Declarations ```ts /** * Shorthand for accessing `ref.value` */ export declare function get(ref: MaybeRef): T; export declare function get(ref: MaybeRef, key: K): T[K]; ```