fuc-new/doc/node_modules/vuepress-theme-plume/lib/client/components/Nav/VPNavScreenSocialLinks.vue
hellcat 6adbc04d4b 1
2025-10-03 17:17:08 +08:00

15 lines
305 B
Vue

<script lang="ts" setup>
import VPSocialLinks from '@theme/VPSocialLinks.vue'
import { useData } from '../../composables/index.js'
const { theme } = useData()
</script>
<template>
<VPSocialLinks
v-if="theme.social"
class="vp-nav-screen-social-links"
:links="theme.social"
/>
</template>