Files
fengjie-datascreen/src/App.vue
2024-12-17 18:18:07 +08:00

18 lines
290 B
Vue

<script setup>
import { RouterView } from 'vue-router'
</script>
<template>
<main class="wrapper"> <RouterView /> </main>
</template>
<style scoped>
.wrapper {
display: flex;
width: 100vw;
height: 100vh;
overflow: hidden;
background-color: #0a254b;
}
</style>