Commit 6606ee61482e933015c37671f4b194a57dbe96a8
1 parent
e64ee85c
update Carousel Icons
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/components/carousel/carousel.vue
1 | 1 | <template> |
2 | 2 | <div :class="classes"> |
3 | 3 | <button type="button" :class="arrowClasses" class="left" @click="arrowEvent(-1)"> |
4 | - <Icon type="chevron-left"></Icon> | |
4 | + <Icon type="ios-arrow-back"></Icon> | |
5 | 5 | </button> |
6 | 6 | <div :class="[prefixCls + '-list']"> |
7 | 7 | <div :class="[prefixCls + '-track', showCopyTrack ? '' : 'higher']" :style="trackStyles" ref="originTrack"> |
... | ... | @@ -11,7 +11,7 @@ |
11 | 11 | </div> |
12 | 12 | </div> |
13 | 13 | <button type="button" :class="arrowClasses" class="right" @click="arrowEvent(1)"> |
14 | - <Icon type="chevron-right"></Icon> | |
14 | + <Icon type="ios-arrow-forward"></Icon> | |
15 | 15 | </button> |
16 | 16 | <ul :class="dotsClasses"> |
17 | 17 | <template v-for="n in slides.length"> | ... | ... |