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 | <template> | 1 | <template> |
| 2 | <div :class="classes"> | 2 | <div :class="classes"> |
| 3 | <button type="button" :class="arrowClasses" class="left" @click="arrowEvent(-1)"> | 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 | </button> | 5 | </button> |
| 6 | <div :class="[prefixCls + '-list']"> | 6 | <div :class="[prefixCls + '-list']"> |
| 7 | <div :class="[prefixCls + '-track', showCopyTrack ? '' : 'higher']" :style="trackStyles" ref="originTrack"> | 7 | <div :class="[prefixCls + '-track', showCopyTrack ? '' : 'higher']" :style="trackStyles" ref="originTrack"> |
| @@ -11,7 +11,7 @@ | @@ -11,7 +11,7 @@ | ||
| 11 | </div> | 11 | </div> |
| 12 | </div> | 12 | </div> |
| 13 | <button type="button" :class="arrowClasses" class="right" @click="arrowEvent(1)"> | 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 | </button> | 15 | </button> |
| 16 | <ul :class="dotsClasses"> | 16 | <ul :class="dotsClasses"> |
| 17 | <template v-for="n in slides.length"> | 17 | <template v-for="n in slides.length"> |