mirror of
https://github.com/imezx/Warp.git
synced 2025-04-25 15:40:02 +00:00
15 lines
299 B
Vue
15 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>
|