mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 14:07:38 -07:00
Perform animation only when reaction is added (#5359)
This commit is contained in:
parent
1a9e651da1
commit
33f0be9e6e
1 changed files with 2 additions and 2 deletions
|
@ -49,8 +49,8 @@ export default Vue.extend({
|
|||
if (!this.isInitial) this.anime();
|
||||
},
|
||||
watch: {
|
||||
count() {
|
||||
this.anime();
|
||||
count(newCount, oldCount) {
|
||||
if (oldCount < newCount) this.anime();
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
|
|
Loading…
Reference in a new issue