Former-commit-id: 24eeb4f81eeb7369d02c362ded62b0f488aa5361 Former-commit-id: 90c0466974ab6e241d51894c87c7c5d9951d9866 Former-commit-id: e79975605ba0428165250197e3178bde4cff9b78
18 lines
233 B
Markdown
18 lines
233 B
Markdown
## 基础页面容器
|
|
|
|
高度根据内容适应
|
|
|
|
```
|
|
<Container>
|
|
主体内容
|
|
</Container>
|
|
```
|
|
|
|
使用 `slot`
|
|
|
|
```
|
|
<Container>
|
|
<template slot="header">我是插入到 header 中的内容</template>
|
|
主体内容
|
|
</Container>
|
|
``` |