shadcn-vue/apps/www/registry/new-york/example/ToastWithTitle.vue
2024-11-21 11:52:31 +08:00

20 lines
438 B
Vue

<script setup lang="ts">
import { Button } from '@/lib/registry/new-york/ui/button'
import { useToast } from '@/lib/registry/new-york/ui/toast/use-toast'
const { toast } = useToast()
</script>
<template>
<Button
variant="outline" @click="() => {
toast({
title: 'Uh oh! Something went wrong.',
description: 'There was a problem with your request.',
});
}"
>
Show Toast
</Button>
</template>