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