mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
51 lines
863 B
Markdown
51 lines
863 B
Markdown
# Panel
|
|
|
|
### Install
|
|
|
|
``` javascript
|
|
import { Panel } from 'vant';
|
|
|
|
Vue.use(Panel);
|
|
```
|
|
|
|
## Usage
|
|
|
|
### Basic Usage
|
|
|
|
```html
|
|
<van-panel title="Title" desc="Description" status="Status">
|
|
<div>Content</div>
|
|
</van-panel>
|
|
```
|
|
|
|
### Advanced Usage
|
|
|
|
```html
|
|
<van-panel title="Title" desc="Description" status="Status">
|
|
<div>Content</div>
|
|
<div slot="footer">
|
|
<van-button size="small">Button</van-button>
|
|
<van-button size="small" type="danger">Button</van-button>
|
|
</div>
|
|
</van-panel>
|
|
```
|
|
|
|
## API
|
|
|
|
### Props
|
|
|
|
| Attribute | Description | Type | Default |
|
|
|------|------|------|------|
|
|
| icon | Left Icon | `String` | - |
|
|
| title | Title | `String` | - |
|
|
| desc | Description | `String` | - |
|
|
| status | Status | `String` | - |
|
|
|
|
### Slots
|
|
|
|
| Name | Description |
|
|
|------|------|
|
|
| default | Default slot |
|
|
| header | Custom header |
|
|
| footer | Custom footer |
|