Skip to content

Commit 5baaa58

Browse files
committed
fix(modal): fixed fullscreen not worked
修复全屏功能异常的问题 fixed: #918
1 parent f707541 commit 5baaa58

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

src/components/Modal/src/BasicModal.vue

+6-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,12 @@
133133
});
134134
135135
const getBindValue = computed((): Recordable => {
136-
const attr = { ...attrs, ...unref(getMergeProps), visible: unref(visibleRef) };
136+
const attr = {
137+
...attrs,
138+
...unref(getMergeProps),
139+
visible: unref(visibleRef),
140+
wrapClassName: unref(getWrapClassName),
141+
};
137142
if (unref(fullScreenRef)) {
138143
return omit(attr, 'height');
139144
}

0 commit comments

Comments
 (0)