UNPKG

@vue-widget/hooks

Version:

hooks from react to vue

5 lines (4 loc) 154 B
import { inject, ref, unref } from "vue"; export function useContext(context, defaultValue) { return inject(context.uid, ref(unref(defaultValue))); }