docs: update button and cell example (#2641)

This commit is contained in:
linrz 2020-01-04 19:23:19 +08:00 committed by neverland
parent 243d36cc7b
commit 551b1c22a9
4 changed files with 11 additions and 10 deletions

View File

@ -54,8 +54,8 @@
<van-button color="linear-gradient(to right, #4bb0ff, #6149f6)">渐变色按钮</van-button>
</demo-block>
<demo-block title="块级元素按钮" padding>
<demo-block title="块级元素" padding>
<van-button type="primary" custom-class="demo-margin-bottom">普通按钮</van-button>
<van-button type="primary" block>块级元素按钮</van-button>
<van-button type="primary" block>块级元素</van-button>
</demo-block>
</demo-section>

View File

@ -82,8 +82,9 @@
<demo-block title="垂直居中">
<van-cell
title="单元格"
value="多行内容多行内容多行内容多行内容"
center
title="单元格"
value="内容"
label="描述信息"
/>
</demo-block>

View File

@ -1,4 +1,4 @@
# Button 按钮
3w# Button 按钮
### 引入
@ -97,12 +97,12 @@
<van-button color="linear-gradient(to right, #4bb0ff, #6149f6)">渐变色按钮</van-button>
```
### 块级元素按钮
### 块级元素
通过`block`属性可以设置按钮的元素类型
通过`block`属性可以将按钮的元素类型设置为块级元素
```html
<van-button type="primary" block>块级元素按钮</van-button>
<van-button type="primary" block>块级元素</van-button>
```
## API

View File

@ -95,10 +95,10 @@
### 垂直居中
通过`center`属性在多行文本时控制左侧标题垂直居中
通过`center`属性可以让`Cell`的左右内容都垂直居中
```html
<van-cell center title="单元格" value="多行内容多行内容多行内容多行内容" />
<van-cell center title="单元格" value="内容" label="描述信息" />
```
## API