UNPKG

element-ui-for-gov

Version:

element-ui for gov

27 lines (19 loc) 559 B
import { VNode, VNodeDirective } from 'vue' import { ElementUIComponentForGov } from './component' export interface CardSlots { /** Content of the card */ default: VNode[], /** Title of the card */ header: VNode[] [key: string]: VNode[] } /** Integrate information in a card container */ export declare class ElCard extends ElementUIComponentForGov { /** Title of the card */ header: string /** CSS style of body */ bodyStyle: object /** When to show card shadows */ shadow: string $slots: CardSlots }