## Panel ### Install ``` javascript import { Panel } from 'vant'; Vue.component(Panel.name, Panel); ``` ### Usage #### Basic Usage :::demo Basic Usage ```html
Panel Content
``` ::: #### Advanced Usage :::demo Advanced Usage ```html
Panel Content
Button Button
``` ::: ### API | Attribute | Description | Type | Default | Accepted Values | |-----------|-----------|-----------|-------------|-------------| | title | Title | `String` | - | - | | desc | Description | `String` | - | - | | status | Status | `String` | - | - | ### Slot | name | Description | |-----------|-----------| | - | Default slot | | header | Custom header | | footer | Custom footer |