feat: zIndex

This commit is contained in:
2023-07-22 16:28:21 +08:00
parent d49a46574f
commit 58548f030b
2 changed files with 7 additions and 3 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-22 15:49:10
* @LastEditTime: 2023-07-22 16:28:10
* @FilePath: \vue3\stories\SelectTableModal.stories.ts
* @Description:
*
@ -39,6 +39,7 @@ const meta = {
pagerCount: document.body.clientWidth < 992 ? 5 : 7,
hidePagination: false,
multiple: false,
zIndex: 2023,
},
render: args => ({
components: { ThSelectTableModal },
@ -56,6 +57,7 @@ const meta = {
:page-sizes="args.pageSizes"
:pager-count="args.pagerCount"
:multiple="args.multiple"
:z-index="args.zIndex"
/>`,
}),
} satisfies Meta<typeof ThSelectTableModal>