UNPKG

@aplus-frontend/antdv

Version:

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

8 lines 251 B
import { inject, provide } from 'vue'; export const BodyContextKey = Symbol('BodyContextProps'); export const useProvideBody = props => { provide(BodyContextKey, props); }; export const useInjectBody = () => { return inject(BodyContextKey, {}); };