UNPKG

@fe6/water-pro

Version:

An enterprise-class UI design language and Vue-based implementation

9 lines 260 B
/** @format */ import { createContext, useContext } from '../../../_util/hooks/use-context'; var key = Symbol(); export function createFormContext(context) { return createContext(context, key); } export function useFormContext() { return useContext(key); }