21 lines
354 B
Vue
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>
|