16 lines
268 B
Vue
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> |