Add caddy and clean up build
This commit is contained in:
@@ -1,9 +1,16 @@
|
||||
<template>
|
||||
{{ t('app.world') }}
|
||||
<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 { t } = useI18n();
|
||||
|
||||
const res = await fetch("/php/notifications.php")
|
||||
const j = await res.json();
|
||||
|
||||
</script>
|
||||
Reference in New Issue
Block a user