feat(Alert): new component (#449)

This commit is contained in:
Benjamin Canac
2023-07-27 16:59:50 +02:00
committed by GitHub
parent 8298b62f21
commit ab2abae48a
14 changed files with 392 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
<template>
<UAlert title="Heads <i>up</i>!" icon="i-heroicons-command-line">
<template #title="{ title }">
<span v-html="title" />
</template>
<template #description>
You can add <b>components</b> to your app using the <u>cli</u>.
</template>
</UAlert>
</template>