Former-commit-id: 28ec2beb0befdc6a796458fbcc1a0c3786fb8d62 Former-commit-id: 82768e538a271a2354616cd01f84fd73631a62b2 Former-commit-id: 450e74928f5d6bdba20e01ce57bebdfde0d512a1
17 lines
205 B
Markdown
17 lines
205 B
Markdown
基础页面容器
|
|
|
|
```
|
|
<Container>
|
|
主体内容
|
|
</Container>
|
|
```
|
|
|
|
使用 `slot`
|
|
|
|
```
|
|
<Container>
|
|
<template slot="header">我是插入到 header 中的内容</template>
|
|
主体内容
|
|
</Container>
|
|
```
|