mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
96 lines
2.6 KiB
Vue
96 lines
2.6 KiB
Vue
<template>
|
|
<UPage>
|
|
<UPageHeader :title="page.title" :description="page.description" :links="page.links" :headline="headline" />
|
|
|
|
<UPageBody prose>
|
|
<ContentRenderer v-if="page.body" :value="page" />
|
|
|
|
<UDivider v-if="surround?.length" />
|
|
|
|
<UDocsSurround :surround="(surround as ParsedContent[])" />
|
|
</UPageBody>
|
|
|
|
<template v-if="page.body?.toc?.links?.length" #right>
|
|
<UDocsToc :links="page.body.toc.links">
|
|
<template #bottom>
|
|
<div class="hidden lg:block space-y-6 !mt-6">
|
|
<UDivider v-if="page.body?.toc?.links?.length" dashed />
|
|
|
|
<UPageLinks title="Community" :links="links" />
|
|
</div>
|
|
</template>
|
|
</UDocsToc>
|
|
</template>
|
|
</UPage>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { withoutTrailingSlash } from 'ufo'
|
|
import type { ParsedContent } from '@nuxt/content/dist/runtime/types'
|
|
|
|
const route = useRoute()
|
|
const { branch } = useContentSource()
|
|
|
|
definePageMeta({
|
|
layout: 'docs'
|
|
})
|
|
|
|
const { data: page } = await useAsyncData(route.path, () => queryContent(route.path).findOne())
|
|
if (!page.value) {
|
|
throw createError({ statusCode: 404, statusMessage: 'Page not found' })
|
|
}
|
|
|
|
const { data: surround } = await useAsyncData(`${route.path}-surround`, () => {
|
|
return queryContent()
|
|
.where({
|
|
_extension: 'md',
|
|
_path: {
|
|
[branch.value?.name === 'dev' ? '$eq' : '$ne']: new RegExp('^/dev')
|
|
},
|
|
navigation: {
|
|
$ne: false
|
|
}
|
|
})
|
|
.only(['title', 'description', '_path'])
|
|
.findSurround(withoutTrailingSlash(route.path))
|
|
})
|
|
|
|
useSeoMeta({
|
|
titleTemplate: '%s - Nuxt UI',
|
|
title: page.value.title,
|
|
ogTitle: `${page.value.title} - Nuxt UI`,
|
|
description: page.value.description,
|
|
ogDescription: page.value.description
|
|
})
|
|
|
|
defineOgImage({
|
|
component: 'Docs',
|
|
title: page.value.title,
|
|
description: page.value.description
|
|
})
|
|
|
|
const headline = computed(() => findPageHeadline(page.value))
|
|
|
|
const links = computed(() => [{
|
|
icon: 'i-heroicons-pencil-square',
|
|
label: 'Edit this page',
|
|
to: `https://github.com/nuxt/ui/edit/dev/docs/content/${branch.value?.name === 'dev' ? page?.value?._file.split('/').slice(1).join('/') : page?.value?._file}`,
|
|
target: '_blank'
|
|
}, {
|
|
icon: 'i-heroicons-star',
|
|
label: 'Star on GitHub',
|
|
to: 'https://github.com/nuxt/ui',
|
|
target: '_blank'
|
|
}, {
|
|
icon: 'i-heroicons-book-open',
|
|
label: 'Nuxt documentation',
|
|
to: 'https://nuxt.com',
|
|
target: '_blank'
|
|
}, {
|
|
icon: 'i-simple-icons-figma',
|
|
label: 'Figma Kit',
|
|
to: 'https://www.figma.com/community/file/1288455405058138934/nuxt-ui',
|
|
target: '_blank'
|
|
}])
|
|
</script>
|