bilibili-API-collect/.vuepress/theme/layouts/Layout.vue
SocialSisterYi 7d89ece2ac
🚀调整项目结构
2023-02-22 01:00:06 +08:00

21 lines
532 B
Vue

<template>
<ParentLayout>
<template #page-bottom>
<footer style="text-align: center;">
Copyright © 2020-2023 <a href="https://github.com/SocialSisterYi/">SocialSisterYi</a> |
<a href="https://github.com/SocialSisterYi/bilibili-API-collect/blob/master/LICENSE">CC-BY-NC-4.0 Licensed</a>
</footer>
</template>
</ParentLayout>
</template>
<script>
import ParentLayout from '@parent-theme/layouts/Layout.vue'
export default {
name: 'Layout',
components: {
ParentLayout
}
}
</script>