Commit dc12b92ccc1da7135d32bea8f863a3511a3e4902
1 parent
67373f38
update Tag Icons
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/components/tag/tag.vue
| @@ -3,13 +3,13 @@ | @@ -3,13 +3,13 @@ | ||
| 3 | <div :class="classes" @click.stop="check" :style="wraperStyles"> | 3 | <div :class="classes" @click.stop="check" :style="wraperStyles"> |
| 4 | <span :class="dotClasses" v-if="showDot" :style="bgColorStyle"></span> | 4 | <span :class="dotClasses" v-if="showDot" :style="bgColorStyle"></span> |
| 5 | <span :class="textClasses" :style="textColorStyle"><slot></slot></span> | 5 | <span :class="textClasses" :style="textColorStyle"><slot></slot></span> |
| 6 | - <Icon v-if="closable" :class="iconClass" :color="lineColor" type="ios-close-empty" @click.native.stop="close"></Icon> | 6 | + <Icon v-if="closable" :class="iconClass" :color="lineColor" type="ios-close" @click.native.stop="close"></Icon> |
| 7 | </div> | 7 | </div> |
| 8 | </transition> | 8 | </transition> |
| 9 | <div v-else :class="classes" @click.stop="check" :style="wraperStyles"> | 9 | <div v-else :class="classes" @click.stop="check" :style="wraperStyles"> |
| 10 | <span :class="dotClasses" v-if="showDot" :style="bgColorStyle"></span> | 10 | <span :class="dotClasses" v-if="showDot" :style="bgColorStyle"></span> |
| 11 | <span :class="textClasses" :style="textColorStyle"><slot></slot></span> | 11 | <span :class="textClasses" :style="textColorStyle"><slot></slot></span> |
| 12 | - <Icon v-if="closable" :class="iconClass" :color="lineColor" type="ios-close-empty" @click.native.stop="close"></Icon> | 12 | + <Icon v-if="closable" :class="iconClass" :color="lineColor" type="ios-close" @click.native.stop="close"></Icon> |
| 13 | </div> | 13 | </div> |
| 14 | </template> | 14 | </template> |
| 15 | <script> | 15 | <script> |