UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

8 lines 313 B
import { provide, inject } from 'vue'; const TreeSelectContextPropsKey = Symbol('TreeSelectContextPropsKey'); export function useProvideSelectContext(props) { return provide(TreeSelectContextPropsKey, props); } export default function useInjectSelectContext() { return inject(TreeSelectContextPropsKey, {}); }