public/components/HomeStatBox.vue

16 lines
207 B
Vue
Raw Normal View History

2022-07-22 16:08:55 -04:00
<script setup lang="ts"></script>
2022-07-22 15:32:00 -04:00
<template>
2022-07-22 16:08:55 -04:00
<div class="container">
<slot />
</div>
2022-07-22 15:32:00 -04:00
</template>
2022-07-22 16:08:55 -04:00
<style scoped>
.container {
width: 10rem;
height: 5rem;
border: 0.5rem solid pink;
}
</style>