Created Accordion.d.ts
parent
2417b170ef
commit
bc79e0c275
|
@ -0,0 +1,10 @@
|
||||||
|
import Vue, { VNode } from 'vue';
|
||||||
|
|
||||||
|
export declare class Accordion extends Vue {
|
||||||
|
multiple?: boolean;
|
||||||
|
$emit(eventName: "tab-open", e: {originalEvent: Event, tab: any}): this;
|
||||||
|
$emit(eventName: "tab-close", e: {originalEvent: Event, tab: any}): this;
|
||||||
|
$slots: {
|
||||||
|
'': VNode[];
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue