kopia lustrzana https://github.com/elk-zone/elk
				
				
				
			
		
			
				
	
	
		
			16 wiersze
		
	
	
		
			486 B
		
	
	
	
		
			Vue
		
	
	
			
		
		
	
	
			16 wiersze
		
	
	
		
			486 B
		
	
	
	
		
			Vue
		
	
	
<script setup lang="ts">
 | 
						|
setupPageHeader()
 | 
						|
provideGlobalCommands()
 | 
						|
 | 
						|
// We want to trigger rerendering the page when account changes
 | 
						|
const key = computed(() => `${currentUser.value?.server ?? currentServer.value}:${currentUser.value?.account.id || ''}`)
 | 
						|
</script>
 | 
						|
 | 
						|
<template>
 | 
						|
  <NuxtLoadingIndicator color="repeating-linear-gradient(to right,var(--c-primary) 0%,var(--c-primary-active) 100%)" />
 | 
						|
  <NuxtLayout :key="key">
 | 
						|
    <NuxtPage />
 | 
						|
  </NuxtLayout>
 | 
						|
  <AriaAnnouncer />
 | 
						|
</template>
 |