mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-29 04:46:37 +08:00
27 lines
611 B
Markdown
27 lines
611 B
Markdown
## Panel 面板组件
|
|
|
|
### 使用指南
|
|
在 index.json 中引入组件
|
|
```json
|
|
{
|
|
"usingComponents": {
|
|
"zan-panel": "/packages/panel/index"
|
|
}
|
|
}
|
|
```
|
|
|
|
### 代码演示
|
|
Panel 提供了一块白色的展示区域,使用方式如下
|
|
```html
|
|
<zan-panel title='我是标题'>
|
|
<view>内容</view>
|
|
</zan-panel>
|
|
```
|
|
| 参数 | 说明 | 类型 | 默认值 | 必须 |
|
|
|-----------|-----------|-----------|-------------|-------------|
|
|
| title | panel的标题 | String | - | |
|
|
| hide-top | 隐藏顶部边框 | Boolean | - | |
|
|
| hide-border | 内容区隐藏边框 | Boolean | - | |
|
|
|
|
|