Théo Le Lez 36e4967394
All checks were successful
CI / build (push) Successful in 13s
Feat: first implementation of postgres db for backend
2025-02-11 00:08:53 +01:00

19 lines
359 B
Vue

<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>