first commit
This commit is contained in:
31
node_modules/vitepress/dist/client/theme-default/components/VPSocialLinks.vue
generated
vendored
Normal file
31
node_modules/vitepress/dist/client/theme-default/components/VPSocialLinks.vue
generated
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<script lang="ts" setup>
|
||||
import type { DefaultTheme } from 'vitepress/theme'
|
||||
import VPSocialLink from './VPSocialLink.vue'
|
||||
|
||||
withDefaults(defineProps<{
|
||||
links: DefaultTheme.SocialLink[]
|
||||
me?: boolean
|
||||
}>(), {
|
||||
me: true
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="VPSocialLinks">
|
||||
<VPSocialLink
|
||||
v-for="{ link, icon, ariaLabel } in links"
|
||||
:key="link"
|
||||
:icon
|
||||
:link
|
||||
:ariaLabel
|
||||
:me
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.VPSocialLinks {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
}
|
||||
</style>
|
||||
Reference in New Issue
Block a user