21 lines
453 B
Vue
21 lines
453 B
Vue
<script setup lang="ts">
|
|
import { Button } from '@/lib/registry/default/ui/button'
|
|
import { toast } from 'vue-sonner'
|
|
</script>
|
|
|
|
<template>
|
|
<Button
|
|
variant="outline" @click="() => {
|
|
toast('Event has been created', {
|
|
description: 'Sunday, December 03, 2023 at 9:00 AM',
|
|
action: {
|
|
label: 'Undo',
|
|
onClick: () => console.log('Undo'),
|
|
},
|
|
})
|
|
}"
|
|
>
|
|
Add to calendar
|
|
</Button>
|
|
</template>
|