# Divider ### Install ```js import Vue from 'vue'; import { Divider } from 'vant'; Vue.use(Divider); ``` ## Usage ### Basic Usage ```html ``` ### With Text ```html Text ``` ### Content Position ```html Text Text ``` ### Dashed ```html Text ``` ### Custom Style ```html Text ``` ## API ### Props | Attribute | Description | Type | Default | |------|------|------|------| | dashed | Whether to use dashed border | *boolean* | `false` | | hairline | Whether to use hairline | *boolean* | `true` | | content-position | Content position,can be set to `left` `right` | *string* | `center` | ### Slots | Name | Description | |------|------| | default | content |