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

12 lines
263 B
Vue

<script setup lang="ts">
const toast = useToast()
function onCallback() {
alert('Notification expired!')
}
</script>
<template>
<UButton label="Show toast" @click="toast.add({ title: 'Expires soon...', timeout: 1000, callback: onCallback })" />
</template>