All checks were successful
Build and Deploy Nuxt / build (push) Successful in 35s
36 lines
723 B
Vue
36 lines
723 B
Vue
<script setup lang="ts">
|
|
import TableHeader from '~/components/parts/TableHeader.vue';
|
|
|
|
const { get, post } = api();
|
|
const { locale } = useI18n();
|
|
|
|
|
|
// Move useAsyncData to top level — NOT inside onMounted
|
|
const { data: markdown } = await useAsyncData(`fixed`, async () =>
|
|
await queryCollection(`fixed`).path(`/fixed/${locale.value}/contact`).first()
|
|
, {watch: [locale]})
|
|
</script>
|
|
|
|
<template>
|
|
<TableHeader></TableHeader>
|
|
|
|
<Container>
|
|
<ContentRenderer v-if="markdown" :value="markdown"></ContentRenderer>
|
|
</Container>
|
|
<Footer></Footer>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
h2 {
|
|
margin-left: 20px;
|
|
}
|
|
|
|
p {
|
|
margin-left: 30px;
|
|
}
|
|
|
|
.two-columns {
|
|
display: flex;
|
|
width: 100%;
|
|
}
|
|
</style> |