UNPKG

@aplus-frontend/antdv

Version:

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

9 lines 282 B
import { inject, provide } from 'vue'; const PanelContextKey = Symbol('PanelContextProps'); export const useProvidePanel = props => { provide(PanelContextKey, props); }; export const useInjectPanel = () => { return inject(PanelContextKey, {}); }; export default PanelContextKey;