Files
ui/docs/components/content/examples/NotificationExampleHtml.vue

8 lines
242 B
Vue

<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>