14 lines
241 B
JavaScript
14 lines
241 B
JavaScript
|
export default {
|
||
|
methods: {
|
||
|
animateChange() {
|
||
|
this.preAnimation = true;
|
||
|
this.pulseAnimation = false;
|
||
|
|
||
|
setTimeout(() => {
|
||
|
this.preAnimation = false;
|
||
|
this.pulseAnimation = true;
|
||
|
});
|
||
|
},
|
||
|
},
|
||
|
};
|