Commit 75a6855b4c703ac8190db0ec5ab5a4594ee4106f
1 parent
37665e29
update Button Icons
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/components/button/button.vue
... | ... | @@ -6,7 +6,7 @@ |
6 | 6 | :href="linkUrl" |
7 | 7 | :target="target" |
8 | 8 | @click="handleClickLink"> |
9 | - <Icon class="ivu-load-loop" type="load-c" v-if="loading"></Icon> | |
9 | + <Icon class="ivu-load-loop" type="ios-sync" v-if="loading"></Icon> | |
10 | 10 | <Icon :type="icon" :custom="customIcon" v-if="(icon || customIcon) && !loading"></Icon> |
11 | 11 | <span v-if="showSlot" ref="slot"><slot></slot></span> |
12 | 12 | </a> |
... | ... | @@ -16,7 +16,7 @@ |
16 | 16 | :class="classes" |
17 | 17 | :disabled="disabled" |
18 | 18 | @click="handleClickLink"> |
19 | - <Icon class="ivu-load-loop" type="load-c" v-if="loading"></Icon> | |
19 | + <Icon class="ivu-load-loop" type="ios-sync" v-if="loading"></Icon> | |
20 | 20 | <Icon :type="icon" :custom="customIcon" v-if="(icon || customIcon) && !loading"></Icon> |
21 | 21 | <span v-if="showSlot" ref="slot"><slot></slot></span> |
22 | 22 | </button> | ... | ... |