Created AccordionTab.d.ts

pull/12/head
mertsincan 2019-05-28 12:54:38 +03:00
parent bc79e0c275
commit b4d8081494
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
import Vue, { VNode } from 'vue';
export declare class AccordionTab extends Vue {
header: string;
active: boolean;
disabled: boolean;
$slot: {
'': VNode[];
'header': VNode[];
}
}