8adc2522c6
Type the docs extractor's package.json parsing as unknown; comment the Vite plugin version-skew cast; wire the tests preset; site/architecture WIP.
14 lines
314 B
Vue
14 lines
314 B
Vue
<script setup lang="ts">
|
|
const { data: home } = await useAsyncData(() => queryCollection('renovate').first());
|
|
|
|
useSeoMeta({
|
|
title: home.value?.title,
|
|
description: home.value?.description,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<ContentRenderer v-if="home" :value="home" />
|
|
<div v-else>Home not found</div>
|
|
</template>
|