2
0
Fork 0
inspin.io/pages/legal/impressum.vue

24 lines
469 B
Vue

<script setup>
const { path } = useRoute()
const { data, error } = await useAsyncData(`content-${path}`, () => {
return queryContent().where({ _path: path }).findOne()
})
if (error.value) {
showError(
createError({
statusCode: 404,
statusMessage: 'Not Found',
})
)
}
</script>
<template>
<div class="legal">
<div class="heading center">
<h2>Will be updated this soon.</h2>
</div>
</div>
</template>