version update to nuxt4
This commit is contained in:
parent
7f1770d442
commit
ef84942e38
41 changed files with 5134 additions and 4946 deletions
15
app/pages/sitemap.vue
Normal file
15
app/pages/sitemap.vue
Normal file
|
@ -0,0 +1,15 @@
|
|||
<template>
|
||||
<NuxtLayout name="default">
|
||||
<div class="min-h-[calc(100vh-9rem)] w-full">
|
||||
<div class="container mx-auto py-12 px-2 min-h-[50vh] flex flex-col gap-2">
|
||||
<NuxtLink v-for="item in sitemap" :key="item.path" :to="`${item.path}`">
|
||||
{{ item.path }} {{ item.hasCollection ? "(...)" : "" }}
|
||||
</NuxtLink>
|
||||
</div>
|
||||
</div>
|
||||
</NuxtLayout>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
const sitemap = useSitemap();
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue