mirror of
https://github.com/ArthurDanjou/artmcp.git
synced 2026-01-14 14:54:22 +01:00
20 lines
306 B
Vue
20 lines
306 B
Vue
<script setup lang="ts">
|
|
const { data: index } = await useAsyncData('index', () =>
|
|
queryCollection('index').first()
|
|
)
|
|
</script>
|
|
|
|
<template>
|
|
<div>
|
|
<ContentRenderer
|
|
v-if="index"
|
|
:value="index"
|
|
/>
|
|
<div
|
|
v-else
|
|
>
|
|
Loading index page...
|
|
</div>
|
|
</div>
|
|
</template>
|