Files
general-template/components/ui-components/chip/LabelChip.vue
Yusron alamsyah 6bb6a1d430 first commit
2026-03-13 10:45:28 +07:00

10 lines
457 B
Vue

<template>
<div class="d-flex flex-column flex-sm-row flex-wrap flex-xl-nowrap align-center gap-3">
<v-chip label closable color="primary"> Primary </v-chip>
<v-chip label closable color="secondary"> Secondary </v-chip>
<v-chip label closable color="warning"> Warning </v-chip>
<v-chip label closable color="success"> Success </v-chip>
<v-chip label closable color="error"> Error </v-chip>
</div>
</template>