Commit 03773f7e9b90f75e0479c86443243386f6d98817
1 parent
183ab50e
update
update
Showing
2 changed files
with
2 additions
and
2 deletions
Show diff stats
src/components/carousel/carousel.vue
@@ -13,7 +13,7 @@ | @@ -13,7 +13,7 @@ | ||
13 | </button> | 13 | </button> |
14 | <ul :class="dotsClasses"> | 14 | <ul :class="dotsClasses"> |
15 | <template v-for="n in slides.length"> | 15 | <template v-for="n in slides.length"> |
16 | - <li :class="[n === currentIndex ? prefixCls+'-active':'' ]" | 16 | + <li :class="[n === currentIndex ? prefixCls + '-active' : '']" |
17 | @click="dotsEvent('click', n)" | 17 | @click="dotsEvent('click', n)" |
18 | @mouseover="dotsEvent('hover', n)"> | 18 | @mouseover="dotsEvent('hover', n)"> |
19 | <button></button> | 19 | <button></button> |
src/components/table/table.vue
@@ -565,7 +565,7 @@ | @@ -565,7 +565,7 @@ | ||
565 | newRow._isDisabled = false; | 565 | newRow._isDisabled = false; |
566 | } | 566 | } |
567 | if (newRow._checked) { | 567 | if (newRow._checked) { |
568 | - newRow._isChecked = newRow._checked; | 568 | + newRow._isChecked = newRow._checked; |
569 | } else { | 569 | } else { |
570 | newRow._isChecked = false; | 570 | newRow._isChecked = false; |
571 | } | 571 | } |