DemoAlertDensity.vue
619 Bytes
<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>