Files
mes-ui-d2/static/markdownFiles/article/组件 - 页面容器.md

23 lines
491 B
Markdown
Raw Normal View History

## 参数
| 参数名 | 介绍 | 必选 | 值类型 | 可选值 | 默认值 |
| --- | --- | --- | --- | --- | --- |
| type | 容器类型 | 非 | String | card ghost full-card | card |
| responsive | 响应式宽度 | 非 | Boolean | | false |
> `responsive` 参数设置只在 `type` 等于 `card` 或 `ghost` 时生效
## 使用方法
基本
```
<template>
<Container>
<template slot="header">
header 内容
</template>
主体内容
</Container>
</template>
```