hgh_admin/resources/js/views/demos/components/alert/DemoAlertDensity.vue
2024-05-29 22:34:28 +05:00

28 lines
619 B
Vue

<template>
<div class="demo-space-y">
<VAlert
density="compact"
color="primary"
variant="tonal"
>
I'm a compact alert with a <strong>color</strong> of primary.
</VAlert>
<VAlert
density="comfortable"
color="secondary"
variant="tonal"
>
I'm a comfortable alert with the <strong>variant</strong> prop and a <strong>color</strong> of secondary.
</VAlert>
<VAlert
density="default"
color="success"
variant="tonal"
>
I'm a default alert with the <strong>color</strong> of success.
</VAlert>
</div>
</template>