[bugfix] Sku button border radius (#378)

This commit is contained in:
neverland
2017-12-05 14:36:22 +08:00
committed by GitHub
parent 32801b453b
commit 056f847824
7 changed files with 22 additions and 60 deletions
+3 -3
View File
@@ -58,14 +58,14 @@ Vue.component(Button.name, Button);
#### 页面底部操作按钮
```html
<van-button type="primary" bottom-action>按钮</van-button>
<van-button type="primary" bottomAction>按钮</van-button>
<van-row>
<van-col span="12">
<van-button bottom-action>按钮</van-button>
<van-button bottomAction>按钮</van-button>
</van-col>
<van-col span="12">
<van-button type="primary" bottom-action>按钮</van-button>
<van-button type="primary" bottomAction>按钮</van-button>
</van-col>
</van-row>
```