mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 15:34:13 +00:00 
			
		
		
		
	fix(frontend): Nested RouteのときにRouterViewに当たるキーがルートのpathとぶち当たる可能性があるのを修正 (#14202)
Co-authored-by: syuilo <4439005+syuilo@users.noreply.github.com>
This commit is contained in:
		
							parent
							
								
									76181385d2
								
							
						
					
					
						commit
						b9f3fccfac
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -60,7 +60,7 @@ function onChange({ resolved, key: newKey }) {
 | 
			
		|||
	if (current == null || 'redirect' in current.route) return;
 | 
			
		||||
	currentPageComponent.value = current.route.component;
 | 
			
		||||
	currentPageProps.value = current.props;
 | 
			
		||||
	key.value = current.route.path + JSON.stringify(Object.fromEntries(current.props));
 | 
			
		||||
	key.value = newKey + JSON.stringify(Object.fromEntries(current.props));
 | 
			
		||||
 | 
			
		||||
	nextTick(() => {
 | 
			
		||||
		// ページ遷移完了後に再びキャッシュを有効化
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue