Commit 35deac77067df39f695e9e5e8f0f958f5fa2bd73
1 parent
45ad8fb8
fix lint: missing semicolon
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
src/components/slider/slider.vue
| ... | ... | @@ -182,7 +182,7 @@ |
| 182 | 182 | return parseInt(getStyle(this.$els.slider, 'width'), 10); |
| 183 | 183 | }, |
| 184 | 184 | tipDisabled () { |
| 185 | - return this.tipFormat(this.value[0]) === null || this.showTip === 'never' | |
| 185 | + return this.tipFormat(this.value[0]) === null || this.showTip === 'never'; | |
| 186 | 186 | } |
| 187 | 187 | }, |
| 188 | 188 | watch: { | ... | ... |