[improvement] replace icons (#2304)

This commit is contained in:
neverland
2018-12-16 15:59:52 +08:00
committed by GitHub
parent f473a0eb66
commit c100b045d1
27 changed files with 143 additions and 164 deletions
+3 -3
View File
@@ -31,7 +31,7 @@ Vue.use(Cell).use(CellGroup);
```html
<van-cell-group>
<van-cell title="Cell title" icon="location" />
<van-cell title="Cell title" icon="location-o" />
</van-cell-group>
```
@@ -66,13 +66,13 @@ Vue.use(Cell).use(CellGroup);
```html
<van-cell-group>
<van-cell value="Content" icon="shop" is-link>
<van-cell value="Content" icon="shop-o" is-link>
<template slot="title">
<span class="custom-text">Cell title</span>
<van-tag type="danger">Tag</van-tag>
</template>
</van-cell>
<van-cell title="Cell title" icon="location" is-link />
<van-cell title="Cell title" icon="location-o" is-link />
<van-cell title="Cell title">
<van-icon slot="right-icon" name="search" class="custom-icon" />
</van-cell>