Files
ui/docs/components/content/examples/NotificationExampleHtml.vue
Benjamin Canac e92be71749 docs: new structure (#1282)
Co-authored-by: Sébastien Chopin <seb@nuxt.com>
2024-01-30 11:24:02 +01:00

8 lines
209 B
Vue

<script setup lang="ts">
const toast = useToast()
</script>
<template>
<UButton label="Show toast" @click="toast.add({ title: 'This is an <u>underlined</u> and <b>bold</b> notification.' })" />
</template>