docs: update some examples of button and cell

This commit is contained in:
linrz
2019-12-29 21:21:24 +08:00
committed by neverland
parent abdc38eeee
commit 1b18c15d28
7 changed files with 16 additions and 16 deletions
+3 -3
View File
@@ -109,12 +109,12 @@ Vue.use(Button);
<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>
```