mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 07:30:02 +00:00
14 lines
299 B
Vue
14 lines
299 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="VPNavScreenSocialLinks"
|
|
:links="theme.socialLinks"
|
|
/>
|
|
</template>
|