Created Card.d.ts

pull/12/head
mertsincan 2019-05-28 13:29:16 +03:00
parent 9b15243925
commit 00031c2dc1
1 changed files with 11 additions and 0 deletions

11
src/components/card/Card.d.ts vendored Normal file
View File

@ -0,0 +1,11 @@
import Vue, { VNode } from 'vue';
export declare class Card extends Vue {
$slots: {
header: VNode[];
title: VNode[];
subtitle: VNode[];
content: VNode[];
footer: VNode[];
}
}