全局边距设置

This commit is contained in:
龚皓 2024-09-05 09:16:58 +08:00
parent d4386f4480
commit 15235c09ad
1 changed files with 11 additions and 2 deletions

View File

@ -1,5 +1,5 @@
<template>
<div id="app">
<div id="app" class="app-container">
<router-view></router-view>
</div>
</template>
@ -13,5 +13,14 @@ export default {
</script>
<style scoped>
/* 添加你的样式 */
#app{
margin: 0px;
padding: 0px;
width: 100%;
height: 100%;
}
/* .app-container{
margin: 0;
padding: 0;
} */
</style>