14 lines
369 B
Vue
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>
|