public/pages/index.vue

15 lines
187 B
Vue
Raw Normal View History

2022-07-21 22:03:35 -04:00
<script setup lang="ts"></script>
2022-07-22 16:08:55 -04:00
<template>
<main>
<h1>Hello!</h1>
<HomeStatBox> Box 1 </HomeStatBox>
</main>
</template>
<style scoped>
main {
display: flex;
}
</style>