mirror of
https://github.com/koel/koel
synced 2024-11-12 23:47:09 +00:00
22 lines
422 B
Vue
22 lines
422 B
Vue
<template>
|
|
<BaseLayout>
|
|
<template #aside-outline-after>
|
|
<nav class="aside-outline-after">
|
|
<Sponsors />
|
|
</nav>
|
|
</template>
|
|
</BaseLayout>
|
|
</template>
|
|
|
|
<script setup>
|
|
import DefaultTheme from 'vitepress/theme'
|
|
import Sponsors from '../components/Sponsors.vue'
|
|
|
|
const { Layout: BaseLayout } = DefaultTheme
|
|
</script>
|
|
|
|
<style lang="postcss">
|
|
.aside-outline-after {
|
|
margin-top: 1.5rem;
|
|
}
|
|
</style>
|