UNPKG

homehui

Version:

Vue3 二次封装基础组件文档

17 lines (16 loc) 485 B
/** * @description 表格多选数据操作 * @param {String} rowKey 当表格可以多选时,所指定的 id * */ export declare const useSelection: (rowKey?: string) => { isSelected: import('vue').Ref<boolean, boolean>; selectedList: import('vue').Ref<{ [key: string]: any; }[], { [key: string]: any; }[]>; selectedListIds: import('vue').ComputedRef<string[]>; selectionChange: (rowArr: { [key: string]: any; }[]) => void; };