Created TabView.d.ts

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

8
src/components/tabview/TabView.d.ts vendored Normal file
View File

@ -0,0 +1,8 @@
import Vue, { VNode } from 'vue';
export declare class TabView extends Vue {
$emit(eventName: 'tab-change', e: { originalEvent: Event, tab: any }): this;
$slots: {
'': VNode[];
}
}