Files
hossein-por-shop/frontend/components/ui/ToastContainer/index.vue
T
marzban-dev b480ecd345 Updated
2025-01-06 19:00:55 +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>