11 lines
297 B
Vue
11 lines
297 B
Vue
<script setup lang="ts">
|
|
const { data } = await useAsyncGraphQLQuery("GeneralSettings", undefined, { cache: { ttl: 0 } });
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
© {{ new Date().getFullYear() }}
|
|
<span v-if="data.generalSettings?.title">{{ data.generalSettings.title }}</span>
|
|
</div>
|
|
</template>
|