18 lines
354 B
Vue
18 lines
354 B
Vue
<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>
|