提交 5baaa585 编写于 作者: 无木

fix(modal): fixed `fullscreen` not worked

修复全屏功能异常的问题

fixed: #918
上级 f707541d
......@@ -133,7 +133,12 @@
});
const getBindValue = computed((): Recordable => {
const attr = { ...attrs, ...unref(getMergeProps), visible: unref(visibleRef) };
const attr = {
...attrs,
...unref(getMergeProps),
visible: unref(visibleRef),
wrapClassName: unref(getWrapClassName),
};
if (unref(fullScreenRef)) {
return omit(attr, 'height');
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册