Commit 953bfc6f1a559309ea2b1114b8ede911a3751cc7
1 parent
2052eb5a
fix(modal): `helpMessage` doesn't work
修复`helpMessage`属性不起作用的问题
Showing
2 changed files
with
3 additions
and
2 deletions
CHANGELOG.zh_CN.md
src/components/Modal/src/BasicModal.vue
... | ... | @@ -140,9 +140,9 @@ |
140 | 140 | wrapClassName: unref(getWrapClassName), |
141 | 141 | }; |
142 | 142 | if (unref(fullScreenRef)) { |
143 | - return omit(attr, 'height'); | |
143 | + return omit(attr, ['height', 'title']); | |
144 | 144 | } |
145 | - return attr; | |
145 | + return omit(attr, 'title'); | |
146 | 146 | }); |
147 | 147 | |
148 | 148 | const getWrapperHeight = computed(() => { | ... | ... |