9d4d4c6d66ca0687f0f820509472240fc545c97f7098a80abc0feaa9f54b5599046dec1831b2f286407303a3d2f7a2bd8af6d0828dd705b337f5a21b87a7b8 521 B

1234567891011121314151617181920212223242526
  1. import { VNode, VNodeDirective } from 'vue'
  2. import { ElementUIComponent } from './component'
  3. export interface CardSlots {
  4. /** Content of the card */
  5. default: VNode[],
  6. /** Title of the card */
  7. header: VNode[]
  8. [key: string]: VNode[]
  9. }
  10. /** Integrate information in a card container */
  11. export declare class ElCard extends ElementUIComponent {
  12. /** Title of the card */
  13. header: string
  14. /** CSS style of body */
  15. bodyStyle: object
  16. /** When to show card shadows */
  17. shadow: string
  18. $slots: CardSlots
  19. }