mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2025-12-17 14:05:12 +00:00
28 lines
468 B
Vue
28 lines
468 B
Vue
<script lang="ts" setup>
|
|
import { useData } from '../composables/data'
|
|
import VPSocialLinks from './VPSocialLinks.vue'
|
|
|
|
const { theme } = useData()
|
|
</script>
|
|
|
|
<template>
|
|
<VPSocialLinks
|
|
v-if="theme.socialLinks"
|
|
class="VPNavBarSocialLinks"
|
|
:links="theme.socialLinks"
|
|
/>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.VPNavBarSocialLinks {
|
|
display: none;
|
|
}
|
|
|
|
@media (min-width: 1280px) {
|
|
.VPNavBarSocialLinks {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
}
|
|
</style>
|