UNPKG

@aplus-frontend/antdv

Version:

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

4 lines (3 loc) 279 B
import type { Ref } from 'vue'; import type { Key, GetRowKey } from '../interface'; export default function useLazyKVMap<RecordType>(dataRef: Ref<readonly RecordType[]>, childrenColumnNameRef: Ref<string>, getRowKeyRef: Ref<GetRowKey<RecordType>>): ((key: Key) => RecordType)[];