Mohamed Maoulainine Maoulainine c60fb8945b
Some checks failed
Format / formatting (push) Successful in 6s
Build / build (push) Successful in 42s
CI / build (push) Failing after 10s
Format / formatting (pull_request) Successful in 5s
fix: with prettier
2025-04-21 19:01:15 +02:00

26 lines
536 B
Vue

<script setup lang="ts">
import { errorList } from "@/services/popupDisplayer.ts";
import ErrorModal from "@/components/errorModal.vue";
</script>
<template>
<div class="error-wrapper">
<error-modal
v-for="elm in errorList"
:key="elm.id"
:error-message="elm.message"
:error-color="elm.color"
/>
</div>
</template>
<style scoped>
.error-wrapper {
position: absolute;
left: 70%;
/*background-color: blue;*/
height: 100%;
width: 30%;
}
</style>