You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
410 B
Vue
24 lines
410 B
Vue
<script setup lang="ts">
|
|
import { useData } from 'vitepress'
|
|
|
|
import HomeHero from './HomeHero.vue'
|
|
|
|
const { frontmatter: fm } = useData()
|
|
</script>
|
|
|
|
<template>
|
|
<template v-if="fm.main">
|
|
<div class="container">
|
|
<HomeHero :data="fm.main" />
|
|
</div>
|
|
</template>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
margin: 0 auto;
|
|
max-width: 1340px;
|
|
}
|
|
</style> |