UNPKG

@aplus-frontend/antdv

Version:

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

8 lines 286 B
import { inject, provide } from 'vue'; export const ExpandedRowContextKey = Symbol('ExpandedRowProps'); export const useProvideExpandedRow = props => { provide(ExpandedRowContextKey, props); }; export const useInjectExpandedRow = () => { return inject(ExpandedRowContextKey, {}); };