mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-09-03 14:49:45 +08:00
56 lines
1.3 KiB
Markdown
56 lines
1.3 KiB
Markdown
# Panel 面板
|
|
|
|
### 引入
|
|
|
|
```js
|
|
import Vue from 'vue';
|
|
import { Panel } from 'vant';
|
|
|
|
Vue.use(Panel);
|
|
```
|
|
|
|
## 代码演示
|
|
|
|
### 基础用法
|
|
|
|
面板只是一个容器,里面可以放入自定义的内容
|
|
|
|
```html
|
|
<van-panel title="标题" desc="描述信息" status="状态">
|
|
<div>内容</div>
|
|
</van-panel>
|
|
```
|
|
|
|
### 高级用法
|
|
|
|
使用`slot`自定义内容
|
|
|
|
```html
|
|
<van-panel title="标题" desc="描述信息" status="状态">
|
|
<div>内容</div>
|
|
<template #footer>
|
|
<van-button size="small">按钮</van-button>
|
|
<van-button size="small" type="danger">按钮</van-button>
|
|
</template>
|
|
</van-panel>
|
|
```
|
|
|
|
## API
|
|
|
|
### Props
|
|
|
|
| 参数 | 说明 | 类型 | 默认值 |
|
|
| ------ | ------------------------------------------ | -------- | ------ |
|
|
| title | 标题 | _string_ | - |
|
|
| desc | 描述 | _string_ | - |
|
|
| status | 状态 | _string_ | - |
|
|
| icon | 标题左侧[图标名称](#/zh-CN/icon)或图片链接 | _string_ | - |
|
|
|
|
### Slots
|
|
|
|
| 名称 | 说明 |
|
|
| ------- | ------------- |
|
|
| default | 自定义内容 |
|
|
| header | 自定义 header |
|
|
| footer | 自定义 footer |
|