forked from FoundKeyGang/FoundKey
fix: modal src should not be null
See: FoundKeyGang/FoundKey#40 (comment)
This commit is contained in:
parent
09b844035c
commit
15ac0fb303
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ type ModalTypes = 'popup' | 'dialog' | 'dialog:top' | 'drawer';
|
|||
const props = withDefaults(defineProps<{
|
||||
manualShowing?: boolean | null;
|
||||
anchor?: { x: string; y: string; };
|
||||
src?: HTMLElement | null;
|
||||
src?: HTMLElement;
|
||||
preferType?: ModalTypes | 'auto';
|
||||
zPriority?: 'low' | 'middle' | 'high';
|
||||
noOverlap?: boolean;
|
||||
|
|
Loading…
Reference in a new issue