Bugfix: Accordion didn't accept activeIndex. Update Type definition
parent
00fc9a26ab
commit
fe4b338d09
|
@ -2,6 +2,7 @@ import Vue, { VNode } from 'vue';
|
||||||
|
|
||||||
declare class Accordion extends Vue {
|
declare class Accordion extends Vue {
|
||||||
multiple?: boolean;
|
multiple?: boolean;
|
||||||
|
activeIndex?: Number|[Number];
|
||||||
$emit(eventName: 'tab-open', e: {originalEvent: Event, tab: any}): this;
|
$emit(eventName: 'tab-open', e: {originalEvent: Event, tab: any}): this;
|
||||||
$emit(eventName: 'tab-close', e: {originalEvent: Event, tab: any}): this;
|
$emit(eventName: 'tab-close', e: {originalEvent: Event, tab: any}): this;
|
||||||
$slots: {
|
$slots: {
|
||||||
|
|
Loading…
Reference in New Issue