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

14 lines
370 B
Vue

<script setup lang="ts">
import type { ThemeHomeCustom } from '../../../shared/index.js'
import VPHomeBox from '@theme/Home/VPHomeBox.vue'
import { Content } from 'vuepress/client'
const props = defineProps<ThemeHomeCustom>()
</script>
<template>
<VPHomeBox class="vp-home-custom" v-bind="props">
<Content class="vp-doc" vp-content />
</VPHomeBox>
</template>