17 lines
251 B
Vue
17 lines
251 B
Vue
<template>
|
|
<div class="wrapper">
|
|
<Screen>
|
|
<Background />
|
|
<Stats />
|
|
</Screen>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
.wrapper {
|
|
width: fit-content;
|
|
height: fit-content;
|
|
border: 1px solid red;
|
|
}
|
|
</style>
|