StationVR/src/App.vue
2025-04-16 12:08:03 +08:00

18 lines
204 B
Vue

<script setup>
import { RouterView } from 'vue-router'
</script>
<template>
<RouterView />
</template>
<style scoped>
html,
body {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
</style>