Commit c8d59a0bbc184a0c50b452759d8865337b13635f
Committed by
GitHub
1 parent
2423aeab
fix "fix: collapse canExpand (#1501)" (#1525)
* fix(type): fix ant-design-vue -> * fix: fix base64 blob * fix: fix CollapseHeader canExpan bug
Showing
1 changed file
with
1 additions
and
6 deletions
src/components/Container/src/collapse/CollapseContainer.vue
1 | 1 | <template> |
2 | 2 | <div :class="prefixCls"> |
3 | - <CollapseHeader | |
4 | - v-bind="$props" | |
5 | - :prefixCls="prefixCls" | |
6 | - :show="show" | |
7 | - @expand="canExpan ? handleExpand : undefined" | |
8 | - > | |
3 | + <CollapseHeader v-bind="props" :prefixCls="prefixCls" :show="show" @expand="handleExpand"> | |
9 | 4 | <template #title> |
10 | 5 | <slot name="title"></slot> |
11 | 6 | </template> | ... | ... |