GPU_Web/src/App.vue
2025-11-20 14:32:03 +08:00

17 lines
209 B
Vue

<!-- src/App.vue -->
<template>
<router-view />
</template>
<style>
/* 全局重置 */
* {
box-sizing: border-box;
}
html, body, #app {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
}
</style>