布局参考 文档,整体使用上
、左
、右
的布局。
编辑src/views/Main.vue
,内容如下。
<template>
<el-container>
<el-header>Header</el-header>
<el-container>
<el-aside>Aside</el-aside>
<el-main>Main</el-main>
</el-container>
</el-container>
</template>
<style scoped>
.el-header {
background-color: red;
}
.el-aside {
background-color: green;
}
.el-main {
background-color: blue;
}
</style>
浏览器访问 http://localhost:5173/#/ ,会发现高度没有铺满。
编辑src/style.css
,添加如下内容。
/* Element Plus el-container 高度 100%, > 符号是表示直接子元素 */
html,
body,
body>#app,
#app>.el-container {
padding: 0px;
margin: 0px;
height: 100%;
}
保存后再查看浏览器,发现高度已经铺满了。
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。