shadcn-vue/apps/www/registry/default/example/ToastSimple.vue
2024-11-21 11:52:31 +08:00

19 lines
378 B
Vue

<script setup lang="ts">
import { Button } from '@/lib/registry/default/ui/button'
import { useToast } from '@/lib/registry/default/ui/toast/use-toast'
const { toast } = useToast()
</script>
<template>
<Button
variant="outline" @click="() => {
toast({
description: 'Your message has been sent.',
});
}"
>
Show Toast
</Button>
</template>