17 lines
205 B
Markdown
17 lines
205 B
Markdown
|
|
基础页面容器
|
||
|
|
|
||
|
|
```
|
||
|
|
<Container>
|
||
|
|
主体内容
|
||
|
|
</Container>
|
||
|
|
```
|
||
|
|
|
||
|
|
使用 `slot`
|
||
|
|
|
||
|
|
```
|
||
|
|
<Container>
|
||
|
|
<template slot="header">我是插入到 header 中的内容</template>
|
||
|
|
主体内容
|
||
|
|
</Container>
|
||
|
|
```
|