mirror of
https://github.com/yamadashy/repomix.git
synced 2026-05-30 11:18:53 +02:00
18 lines
239 B
Vue
18 lines
239 B
Vue
<script setup>
|
|
import Hero from './Home/Hero.vue';
|
|
import TryIt from './Home/TryIt.vue';
|
|
</script>
|
|
|
|
<template>
|
|
<div class="home">
|
|
<Hero />
|
|
<TryIt />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.home {
|
|
padding-bottom: 60px;
|
|
}
|
|
</style>
|