Files
ui/docs/components/content/examples/NotificationExampleClick.vue
2024-10-24 10:30:37 +02:00

12 lines
219 B
Vue

<script setup lang="ts">
const toast = useToast()
function onClick() {
alert('Clicked!')
}
</script>
<template>
<UButton label="Show toast" @click="toast.add({ title: 'Click me', click: onClick })" />
</template>