chore: add about link

This commit is contained in:
YunYouJun
2022-04-20 00:58:48 +08:00
parent 8914bea751
commit 891497614d
7 changed files with 568 additions and 557 deletions

View File

@@ -0,0 +1,18 @@
<script lang="ts" setup>
import VueAboutMe from 'vue-about-me'
import 'vue-about-me/style.css'
import { isDark } from '~/composables'
const copyright = {
name: 'Cook',
repo: 'YunYouJun/cook',
color: '#0078E7',
iconUrl: 'https://sponsors.yunyoujun.cn',
author: '云游君',
authorUrl: 'https://www.yunyoujun.cn',
}
</script>
<template>
<vue-about-me :is-dark="isDark" :copyright="copyright" />
</template>