Files
hossein-por-shop/frontend/components/global/ToastContainer/index.vue
T
2025-01-14 18:49:23 +03:30

19 lines
326 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"
:options="toast.options"
/>
</template>