mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-17 22:15:13 +00:00
28 lines
498 B
Vue
28 lines
498 B
Vue
<script lang="ts" setup>
|
|
import type { DefaultTheme } from 'vitepress/theme'
|
|
import VPSocialLink from './VPSocialLink.vue'
|
|
|
|
defineProps<{
|
|
links: DefaultTheme.SocialLink[]
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<div class="VPSocialLinks">
|
|
<VPSocialLink
|
|
v-for="{ link, icon, ariaLabel } in links"
|
|
:key="link"
|
|
:icon="icon"
|
|
:link="link"
|
|
:ariaLabel="ariaLabel"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.VPSocialLinks {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
</style>
|