19 lines
326 B
Vue
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> |