# 布局
# 预览
header
sider
content
header
content
header
sider
content
# 使用方法
<template>
<div class="wrapper">
<i-layout>
<i-header> header </i-header>
<i-layout>
<i-sider> sider </i-sider>
<i-content> content </i-content>
</i-layout>
<i-footer> footer </i-footer>
</i-layout>
<br>
<i-layout>
<i-header> header </i-header>
<i-content> content </i-content>
<i-footer> footer </i-footer>
</i-layout>
<br>
<i-layout>
<i-header> header </i-header>
<i-layout>
<i-sider> sider </i-sider>
<i-layout>
<i-content> content </i-content>
<i-footer> footer </i-footer>
</i-layout>
</i-layout>
</i-layout>
</div>
</template>
<style lang="scss" scoped>
$background: #3eaf7c;
.wrapper {
> .layout-wrapper { height: 30vh;
> .header-wrapper { height: 3em; background: $background; }
> .content-wrapper { background: lighten($background, 40%); }
> .layout-wrapper { height: 6em;
> .sider-wrapper { width: 3em; background: lighten($background, 15%); }
> .content-wrapper { background: lighten($background, 40%); }
> .layout-wrapper{
> .content-wrapper{ background: lighten($background, 40%); }
> .footer-wrapper { background: $background; }
}
}
> .footer-wrapper { background: $background; }
}
}
</style>
# 选项
提供基础布局,样式自定义。
# 组件概述
i-layout :布局容器,其下可嵌套 Header Sider Content Footer 或 Layout 本身,可以放在任何父容器中。
i-header :顶部布局,其下可嵌套任何元素,只能放在 Layout 中。
i-sider :侧边栏,其下可嵌套任何元素,只能放在 Layout 中。
i-content :内容部分,其下可嵌套任何元素,只能放在 Layout 中。
i-footer :底部布局,其下可嵌套任何元素,只能放在 Layout 中。