Panel 面板

使用指南

在 app.json 或 index.json 中引入组件

  1. "usingComponents": {
  2. "van-panel": "path/to/vant-weapp/dist/panel/index"
  3. }

代码演示

基础用法

面板只是一个容器,里面可以放入自定义的内容

  1. <van-panel title="标题" desc="描述信息" status="状态">
  2. <view>内容</view>
  3. </van-panel>

高级用法

使用slot自定义内容

  1. <van-panel title="标题" desc="描述信息" status="状态" use-footer-slot>
  2. <view>内容</view>
  3. <view slot="footer">
  4. <van-button size="small">按钮</van-button>
  5. <van-button size="small" type="danger">按钮</van-button>
  6. </view>
  7. </van-panel>

API

参数说明类型默认值
title标题String-
desc描述String-
status状态String-
use-footer-slot是否使用 footer slotBooleanfalse

Slot

名称说明
-自定义内容
header自定义 header,如果设置了titledescstatus属性则不生效
footer自定义 footer,需要设置 use-footer-slot属性

外部样式类

类名说明
custom-class根节点样式类
header-class头部样式类
footer-class底部样式类

更新日志

版本类型内容
0.0.1feature新增组件

原文: https://youzan.github.io/vant-weapp/#/panel