Skip to content

Commit b799671

Browse files
Juravenatormarcosmoura
authored andcommitted
fix(MdRipple): fixed missing ripple effect (#2059)
1 parent 4fa84a4 commit b799671

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/components/MdRipple/MdWave.vue

+5-2
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,19 @@
1010
name: 'MdWave',
1111
data () {
1212
return {
13-
animating: true
13+
animating: false
1414
}
1515
},
1616
props: {
1717
waveClasses: null,
1818
waveStyles: null
1919
},
20+
mounted: function() {
21+
this.animating = true;
22+
},
2023
methods: {
2124
end () {
22-
this.animating = null
25+
this.animating = false
2326
this.$emit('md-end')
2427
}
2528
}

0 commit comments

Comments
 (0)