Initial commit

This commit is contained in:
2025-08-04 16:33:07 +03:30
commit f798e8e35c
9595 changed files with 1208683 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<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>