Added Button.d.ts file

pull/12/head
mertsincan 2019-05-28 11:53:10 +03:00
parent d4fcf7e070
commit 56aefd6a53
1 changed files with 7 additions and 0 deletions

7
src/components/button/Button.d.ts vendored Normal file
View File

@ -0,0 +1,7 @@
import Vue from 'vue';
export declare class Button extends Vue {
label?: string;
icon?: string;
iconPos?: 'left';
}