Files
hossein-por-shop/frontend/components/ui/ToastContainer/index.vue
T
2024-12-30 19:55:10 +03:30

19 lines
334 B
Vue

<script setup>
// state
import ToastBox from "~/components/ui/ToastContainer/ToastBox.vue";
const { toasts } = useToast();
</script>
<template>
<ToastBox
v-for="toast in toasts"
:key="toast.id"
:id="toast.id"
:message="toast.message"
:description="toast.description"
/>
</template>