Files
cmms/vue/routes/index.vue
T
2026-09-10 11:20:46 +02:00

16 lines
268 B
Vue

<template>
<p>{{ t('app.world') }}</p>
<p v-for="value in j">
{{ value }}
</p>
</template>
<script setup>
import { useI18n } from 'vue-i18n'
const { t } = useI18n();
const res = await fetch("/php/notifications.php")
const j = await res.json();
</script>