# Data Card

The Data Card component is an data component that allows user to display important information in form of cards.

# Usage

Use title prop to display info on top of data card. Use data prop to display data in the middle of the card. If desired, you can use the title and data slots instead.

Use the trends array to display trend data below the card data.

Property Type Description
variant TagVariant The tag variant to use
value String The value shown inside the tag
text String The text to the right of the tag

# Actions

Use the actions prop to add actions to your card. Each action is a PopoverMenuItem.

For a single action, this will render as the action's icon so you must supply an icon.

For multiple actions, this will render as an ellipsis Icon that opens a Popover Menu when clicked. You must supply text for each action.

Whenever an action is clicked, it will emit the @action:click event and execute the action's onClick function if it has one.

Each action is a PopoverMenuItem with some additional requirements.

Property Type Required Description
icon String Required for singular actions The icon to render
text String Required for multiple actions Text to show in the popover menu

# Clickable Cards

Use the to prop to make your card link to a webpage or route when clicked.

You can also pass a @click event if you need to do something programmatically.

Clickable cards have shadows on hover.

# Custom Content

Use the default slot for custom content. This will be rendered after all other content.

# Events

Event Args Emitted when...
@click - Card is clicked
@action:click - Card action is clicked
Last Updated: 9/19/2022, 2:12:44 PM