Former-commit-id: 5780d44ef810039a95e544cef9b2e4cd583cabac Former-commit-id: 1835ab3f08ff49c7f9f71b897d1b3f0c305efb14 Former-commit-id: 4c5d58f77c77c98504f625d37f983822e8a7bafe
18 lines
230 B
Markdown
18 lines
230 B
Markdown
基础页面容器
|
|
|
|
高度根据内容适应
|
|
|
|
```
|
|
<Container>
|
|
主体内容
|
|
</Container>
|
|
```
|
|
|
|
使用 `slot`
|
|
|
|
```
|
|
<Container>
|
|
<template slot="header">我是插入到 header 中的内容</template>
|
|
主体内容
|
|
</Container>
|
|
``` |