Feat: first implementation of postgres db for backend
All checks were successful
CI / build (push) Successful in 13s

This commit is contained in:
Théo Le Lez
2025-02-11 00:08:53 +01:00
parent c32eea8a40
commit 36e4967394
28 changed files with 1205 additions and 3 deletions

View File

@ -0,0 +1,18 @@
<script setup lang="ts">
import { addNewMessage } from "@/services/popupDisplayer.ts";
</script>
<template>
<button
@click="
addNewMessage(
'new error from another view',
Math.floor(Math.random() * 4)
)
"
>
Add an error
</button>
</template>
<style scoped></style>