feat(form): formDialog支持zIndex props

This commit is contained in:
roymondchen 2022-10-20 16:53:55 +08:00 committed by jia000
parent bab4bf86cb
commit f6b7e8dad8

View File

@ -6,6 +6,7 @@
append-to-body
:title="title"
:width="width"
:zIndex="zIndex"
:fullscreen="fullscreen"
:close-on-click-modal="false"
@close="closeHandler"
@ -71,6 +72,7 @@ const props = withDefaults(
labelWidth?: string;
fullscreen?: boolean;
title?: string;
zIndex?: number;
size?: 'small' | 'default' | 'large';
confirmText?: string;
}>(),