feat: useTable 导出清空选中方法

This commit is contained in:
RubyLiu 2023-09-25 11:46:02 +08:00 committed by 刘瑞斌
parent fcebe7ceaf
commit eba0879538
2 changed files with 11 additions and 0 deletions

View File

@ -338,5 +338,6 @@ export default function useTableProps<T>(
setKeyword, setKeyword,
resetPagination, resetPagination,
getSelectedCount, getSelectedCount,
resetSelector,
}; };
} }

View File

@ -2,6 +2,16 @@
<MsCard simple> <MsCard simple>
<h1>BugManagement is waiting for development </h1> <h1>BugManagement is waiting for development </h1>
<ms-pagination size="small" :total="100000" show-total show-jumper show-page-size /> <ms-pagination size="small" :total="100000" show-total show-jumper show-page-size />
<a-range-picker
style="margin: 0 24px 24px 0; width: 360px"
show-time
:time-picker-props="{ defaultValue: ['00:00:00', '09:09:06'] }"
format="YYYY-MM-DD HH:mm"
@change="onChange"
@select="onSelect"
@ok="onOk"
/>
</MsCard> </MsCard>
</template> </template>