feat: 多选功能

This commit is contained in:
2023-07-22 15:49:39 +08:00
parent f5dc4b2068
commit 8b3794aae6
2 changed files with 55 additions and 14 deletions

View File

@ -2,7 +2,7 @@
* @Author: zhaojinfeng 121016171@qq.com
* @Date: 2023-07-18 12:30:07
* @LastEditors: zhaojinfeng 121016171@qq.com
* @LastEditTime: 2023-07-21 22:03:59
* @LastEditTime: 2023-07-22 15:49:10
* @FilePath: \vue3\stories\SelectTableModal.stories.ts
* @Description:
*
@ -38,6 +38,7 @@ const meta = {
pageSizes: [10, 20, 30, 50],
pagerCount: document.body.clientWidth < 992 ? 5 : 7,
hidePagination: false,
multiple: false,
},
render: args => ({
components: { ThSelectTableModal },
@ -54,6 +55,7 @@ const meta = {
layout="args.layout"
:page-sizes="args.pageSizes"
:pager-count="args.pagerCount"
:multiple="args.multiple"
/>`,
}),
} satisfies Meta<typeof ThSelectTableModal>