Created TabPanel.d.ts

pull/12/head
mertsincan 2019-05-29 14:09:27 +03:00
parent 8cb296f9d8
commit 64f6c8a4c1
1 changed files with 10 additions and 0 deletions

10
src/components/tabpanel/TabPanel.d.ts vendored Normal file
View File

@ -0,0 +1,10 @@
import Vue, { VNode } from 'vue';
export declare class TabPanel extends Vue {
header?: any;
active?: boolean;
disabled?: boolean;
$slots: {
'': VNode[];
}
}