Working on UI

This commit is contained in:
2026-09-11 16:06:49 +02:00
parent fcd4d4743b
commit abf00ac401
12 changed files with 218 additions and 25 deletions
+2 -14
View File
@@ -1,22 +1,10 @@
<template>
<p>{{ t('app.world') }}</p>
<p v-for="value in j">
{{ value }}
</p>
<h1 class="title">{{ t('menu.dashboard') }}</h1>
</template>
<script setup>
import { onMounted, ref } from 'vue';
import { useI18n } from 'vue-i18n'
import { useI18n } from 'vue-i18n';
const { t } = useI18n();
const j = ref([]);
onMounted(async () => {
const res = await fetch("/php/notifications.php")
j.value = await res.json();
});
</script>