jiangchengfeiyi-Web/src/App.vue

24 lines
235 B
Vue
Raw Normal View History

2024-10-23 09:55:22 +00:00
<template>
<RouterView></RouterView>
</template>
<script setup lang="ts">
</script>
<style scoped>
2024-10-23 11:47:37 +00:00
html{
padding:0;
margin: 0;
}
body{
padding: 0;
margin: 0;
overflow: hidden;
width: 100%;
height: 100%;
}
2024-10-23 09:55:22 +00:00
</style>