feat: nds render system
This commit is contained in:
20
app/app.vue
Normal file
20
app/app.vue
Normal file
@@ -0,0 +1,20 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user