mirror of
https://github.com/pengzhanbo/vuepress-theme-plume.git
synced 2026-04-23 10:58:13 +08:00
14 lines
369 B
Vue
14 lines
369 B
Vue
<script setup lang="ts">
|
|
import { Content } from 'vuepress/client'
|
|
import VPHomeBox from '@theme/Home/VPHomeBox.vue'
|
|
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>
|