We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4fa84a4 commit b799671Copy full SHA for b799671
src/components/MdRipple/MdWave.vue
@@ -10,16 +10,19 @@
10
name: 'MdWave',
11
data () {
12
return {
13
- animating: true
+ animating: false
14
}
15
},
16
props: {
17
waveClasses: null,
18
waveStyles: null
19
20
+ mounted: function() {
21
+ this.animating = true;
22
+ },
23
methods: {
24
end () {
- this.animating = null
25
+ this.animating = false
26
this.$emit('md-end')
27
28
0 commit comments