Files
mes-ui-d2/static/md/组件 - 页面容器 - 基础.md
李杨 00e888efb0 no message
Former-commit-id: 24eeb4f81eeb7369d02c362ded62b0f488aa5361
Former-commit-id: 90c0466974ab6e241d51894c87c7c5d9951d9866
Former-commit-id: e79975605ba0428165250197e3178bde4cff9b78
2018-03-22 23:07:57 +08:00

18 lines
233 B
Markdown

## 基础页面容器
高度根据内容适应
```
<Container>
主体内容
</Container>
```
使用 `slot`
```
<Container>
<template slot="header">我是插入到 header 中的内容</template>
主体内容
</Container>
```