## Layout
Quickly and easily create layouts with `van-row` and `van-col`
### Install
``` javascript
import { Row, Col } from 'vant';
Vue.use(Row).use(Col);
```
### Usage
#### Basic Usage
Layout are based on 24-column. The attribute `span` in `Col` means the number of column the grid spans. Of course, You can use `offset` attribute to set number of spacing on the left side of the grid.
```html
span: 8
span: 8
span: 8
span: 4
offset: 4, span: 10
span: 6
offset: 12, span: 12
```
#### Column Spacing
Set grid spacing using `gutter` attribute. The default value is 0
```html
span: 8
span: 8
span: 8
```
#### Flex Layout
Setting `type` to `flex` to enable flex layout
```html
span: 6
span: 6
span: 6
span: 6
span: 6
span: 6
span: 6
span: 6
span: 6
span: 6
span: 6
span: 6
span: 6
span: 6
span: 6
```
### Row Props
| Attribute | Description | Type | Default |
|------|------|------|------|
| type | Layout type, can be set to `flex` | `String` | - |
| gutter | Grid spacing(px) | `String | Number` | - |
| tag | Custom element tag | `String` | `div` |
| justify | Flex main axis,can be set to end/center/space-around/space-between | `String` | `start` |
| align | Flex cross axis, be set to center/bottom | `String` | `top` |
### Col Props
| Attribute | Description | Type | Default |
|------|------|------|------|
| span | Number of column the grid spans | `String | Number` | - |
| offset | Number of spacing on the left side of the grid | `String | Number` | - |
| tag | Custom element tag | `String` | `div` |