全局边距设置
This commit is contained in:
parent
d4386f4480
commit
15235c09ad
13
src/App.vue
13
src/App.vue
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue