df7c90116b
moved setstate method into store
13 lines
241 B
JavaScript
13 lines
241 B
JavaScript
export default {
|
|
methods: {
|
|
animateChange() {
|
|
this.preAnimation = true;
|
|
this.pulseAnimation = false;
|
|
|
|
setTimeout(() => {
|
|
this.preAnimation = false;
|
|
this.pulseAnimation = true;
|
|
});
|
|
},
|
|
},
|
|
};
|