-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Chips
Sanya Boriskin edited this page Aug 5, 2019
·
9 revisions
- va-chip
- va-badge
- va-count-badge
<va-chip
icon="brandico brandico-facebook"
icon-right="iconicstroke iconicstroke-info"
>
Plus chip
</va-chip>-
value- Boolean - controls chip visibility. -
outline- Boolean. -
color- String (default: 'success') - use this property to set the color of the chip. We can choose one color from a set of theme colors (primary, secondary, info, error, warning). -
small- Boolean -
large- Boolean -
icon- String - insert icon with defined class from the left side of the chip. -
iconRight- String - insert icon with defined class from the right side of the chip
Small chip with possibility to set color.
<va-badge
outline
color="warning"
>
On Hold
</va-badge>-
color- String (default: 'success') - use this property to set the color of the badge. We can choose one color from a set of theme colors (primary, secondary, info, error, warning). -
outline- Boolean.
Badge for displaying numeric countable information (f.e. in notifications, messages).
<va-count-badge
:number="999"
color="info"
>
Statuses
</va-count-badge>-
number- Number. -
color- String (default: 'success').