style: collapse #4474

pull/4479/head
tangjinzhou 2021-08-05 14:50:49 +08:00
parent 093f07c500
commit 524cc1382c
1 changed files with 1 additions and 2 deletions

View File

@ -11,7 +11,6 @@ import openAnimationFactory from './openAnimationFactory';
import { collapseProps } from './commonProps'; import { collapseProps } from './commonProps';
import { getDataAndAriaProps } from '../../_util/util'; import { getDataAndAriaProps } from '../../_util/util';
import { defineComponent } from 'vue'; import { defineComponent } from 'vue';
import isNil from 'lodash/isNil';
function _toArray(activeKey) { function _toArray(activeKey) {
let currentActiveKey = activeKey; let currentActiveKey = activeKey;
@ -79,7 +78,7 @@ export default defineComponent({
const { prefixCls, accordion, destroyInactivePanel, expandIcon } = this.$props; const { prefixCls, accordion, destroyInactivePanel, expandIcon } = this.$props;
// If there is no key provide, use the panel order as default key // If there is no key provide, use the panel order as default key
const key = !isNil(child.key) ? String(child.key) : String(index); const key = String(child.key ?? index);
const { header, headerClass, disabled } = getPropsData(child); const { header, headerClass, disabled } = getPropsData(child);
let isActive = false; let isActive = false;