Files
Basalt2/node_modules/vitepress/dist/client/theme-default/components/VPHomeHero.vue
Robert Jelic 31787b0e9b Fix
2025-02-16 18:04:24 +01:00

22 lines
531 B
Vue

<script setup lang="ts">
import { useData } from '../composables/data'
import VPHero from './VPHero.vue'
const { frontmatter: fm } = useData()
</script>
<template>
<VPHero
v-if="fm.hero"
class="VPHomeHero"
:name="fm.hero.name"
:text="fm.hero.text"
:tagline="fm.hero.tagline"
:image="fm.hero.image"
:actions="fm.hero.actions"
>
<template #home-hero-info><slot name="home-hero-info" /></template>
<template #home-hero-image><slot name="home-hero-image" /></template>
</VPHero>
</template>