File tree 1 file changed +7
-4
lines changed
1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 7
7
@mousedown.passive.stop =" startRipple" >
8
8
<slot />
9
9
10
- <transition name =" md-ripple" appear @after-enter =" clearWave" v-if =" !mdDisabled " >
10
+ <transition name =" md-ripple" @after-enter =" clearWave" v-if =" !isDisabled " >
11
11
<span class =" md-ripple-wave" :class =" waveClasses" :style =" waveStyles" v-if =" animating" ref =" rippleWave" />
12
12
</transition >
13
13
</div >
30
30
touchTimeout: null
31
31
}),
32
32
computed: {
33
+ isDisabled () {
34
+ return ! this .$material .ripple || this .mdDisabled
35
+ },
33
36
rippleClasses () {
34
37
return {
35
- ' md-disabled' : this .mdDisabled
38
+ ' md-disabled' : this .isDisabled
36
39
}
37
40
},
38
41
waveClasses () {
61
64
}, 100 )
62
65
},
63
66
async startRipple ($event ) {
64
- const { eventType , mdDisabled , mdCentered } = this
67
+ const { eventType , isDisabled , mdCentered } = this
65
68
66
- if (! mdDisabled && (! eventType || eventType === $event .type )) {
69
+ if (! isDisabled && (! eventType || eventType === $event .type )) {
67
70
let rippleSize = this .getSize ()
68
71
let ripplePosition = null
69
72
You can’t perform that action at this time.
0 commit comments