Fixed for changeActiveItem
parent
13b9fd9537
commit
2aa1fa89c6
|
@ -204,7 +204,7 @@ export default {
|
||||||
const active = this.isItemActive(item);
|
const active = this.isItemActive(item);
|
||||||
const eventName = !active ? 'panel-open' : 'panel-close';
|
const eventName = !active ? 'panel-open' : 'panel-close';
|
||||||
|
|
||||||
this.activeItem = selfActive ? item : this.activeItem && this.activeItem === item ? null : item;
|
this.activeItem = selfActive ? item : this.activeItem && ObjectUtils.equals(item, this.activeItem) ? null : item;
|
||||||
this.changeExpandedKeys({ item, expanded: !active });
|
this.changeExpandedKeys({ item, expanded: !active });
|
||||||
this.$emit(eventName, { originalEvent: event, item });
|
this.$emit(eventName, { originalEvent: event, item });
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue