mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	Perform animation only when reaction is added (#5359)
This commit is contained in:
		
							parent
							
								
									084fd8152b
								
							
						
					
					
						commit
						423f776ed0
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		| 
						 | 
					@ -49,8 +49,8 @@ export default Vue.extend({
 | 
				
			||||||
		if (!this.isInitial) this.anime();
 | 
							if (!this.isInitial) this.anime();
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
	watch: {
 | 
						watch: {
 | 
				
			||||||
		count() {
 | 
							count(newCount, oldCount) {
 | 
				
			||||||
			this.anime();
 | 
								if (oldCount < newCount) this.anime();
 | 
				
			||||||
		},
 | 
							},
 | 
				
			||||||
	},
 | 
						},
 | 
				
			||||||
	methods: {
 | 
						methods: {
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue