UNPKG

@aplus-frontend/antdv

Version:

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

8 lines 257 B
import { inject, provide } from 'vue'; export const TableContextKey = Symbol('TableContextProps'); export const useProvideTable = props => { provide(TableContextKey, props); }; export const useInjectTable = () => { return inject(TableContextKey, {}); };