Files
fengjie-datascreen/src/App.vue
duanliang d8bbf4c209 6.11
2025-06-11 09:54:06 +08:00

19 lines
293 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>