public/components/HomeStatBox.vue

16 lines
207 B
Vue

<script setup lang="ts"></script>
<template>
<div class="container">
<slot />
</div>
</template>
<style scoped>
.container {
width: 10rem;
height: 5rem;
border: 0.5rem solid pink;
}
</style>