# 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 |