mirror of
https://github.com/hpware/news-analyze.git
synced 2025-06-23 07:41:02 +08:00
16 lines
327 B
Vue
16 lines
327 B
Vue
<script setup lang="ts">
|
|
const { data: home } = await useAsyncData(() =>
|
|
queryCollection("content").path("/").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>
|