2024-09-11 00:03:13 +08:00

14 lines
369 B
Vue

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