Files
pihkaal-me/app/app.vue
2025-11-09 16:20:30 +01:00

21 lines
354 B
Vue

<script setup lang="ts">
import Background from "./components/screen/Background.vue";
</script>
<template>
<div class="wrapper">
<Screen>
<Background />
<ScreenStats />
</Screen>
</div>
</template>
<style>
.wrapper {
width: fit-content;
height: fit-content;
border: 1px solid red;
}
</style>