UNPKG

wetrade-design

Version:

一款多语言支持Vue3的UI框架

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