增加页面组件
This commit is contained in:
17
app/components/docs/DocsAsideRightBottom.vue
Normal file
17
app/components/docs/DocsAsideRightBottom.vue
Normal file
@@ -0,0 +1,17 @@
|
||||
<script setup lang="ts">
|
||||
const appConfig = useAppConfig()
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div
|
||||
v-if="appConfig.toc?.bottom?.links?.length"
|
||||
class="hidden lg:block space-y-6"
|
||||
>
|
||||
<USeparator type="dashed" />
|
||||
|
||||
<UPageLinks
|
||||
:title="appConfig.toc?.bottom?.title || 'Links'"
|
||||
:links="appConfig.toc?.bottom?.links"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
Reference in New Issue
Block a user