布局
简单布局
预览
代码
<g-layout style="color: white;">
<g-header style="height: 50px; background:deepskyblue;">
header
</g-header>
<g-content style="height: 100px; background:;lightskyblue">
content
</g-content>
<g-footer style="height: 50px; background:deepskyblue;">
footer
</g-footer>
</g-layout>
内测边栏布局(可关闭)
预览
代码
<g-layout style="color: white; overflow:hidden;">
<g-header style="height: 50px; background:lightskyblue;">
header
</g-header>
<g-layout>
<g-sider style="height: 100px; background: #7cb8ff; width:200px; color: black;">
sider
</g-sider>
<g-content style="height: 100px; background:deepskyblue;">
content
</g-content>
</g-layout>
<g-footer style="height: 50px; background:lightskyblue;">
footer
</g-footer>
</g-layout>
外侧边栏布局(可关闭)
预览
代码
<g-layout style="color: white; overflow:hidden;">
<g-sider style=" background: #ccc; width:200px; color: black;">
sider
</g-sider>
<g-layout>
<g-header style="height: 50px; background:lightskyblue;">
header
</g-header>
<g-content style="height: 100px; background:deepskyblue;">
content
</g-content>
<g-footer style="height: 50px; background:lightskyblue;">
footer
</g-footer>
</g-layout>
</g-layout>
← Grid - 网格 Toast - 弹出框 →