feat(Notification): support html with title and description slots (#431)

This commit is contained in:
Benjamin Canac
2023-07-20 11:58:43 +02:00
committed by GitHub
parent 9fc786eda0
commit df455db3ca
5 changed files with 71 additions and 4 deletions

View File

@@ -0,0 +1,7 @@
<script setup>
const toast = useToast()
</script>
<template>
<UButton label="Show toast" @click="toast.add({ title: 'Notification <i>italic</i>', description: 'This is an <u>underlined</u> and <b>bold</b> notification.' })" />
</template>