mirror of
				https://github.com/1Panel-dev/1Panel.git
				synced 2025-11-01 03:37:19 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			39 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
	
		
			1 KiB
		
	
	
	
		
			Vue
		
	
	
	
	
	
| <template>
 | |
|     <el-config-provider :locale="i18nLocale" :button="config" :size="assemblySize">
 | |
|         <router-view v-if="isRouterAlive"></router-view>
 | |
|     </el-config-provider>
 | |
| </template>
 | |
| 
 | |
| <script setup lang="ts">
 | |
| import { reactive, computed, ref, nextTick, provide } from 'vue';
 | |
| import { GlobalStore } from '@/store';
 | |
| import zhCn from 'element-plus/es/locale/lang/zh-cn';
 | |
| import en from 'element-plus/es/locale/lang/en';
 | |
| import { useTheme } from '@/hooks/use-theme';
 | |
| useTheme();
 | |
| 
 | |
| const globalStore = GlobalStore();
 | |
| const config = reactive({
 | |
|     autoInsertSpace: false,
 | |
| });
 | |
| 
 | |
| const i18nLocale = computed((): any => {
 | |
|     if (globalStore.language && globalStore.language == 'zh') return zhCn;
 | |
|     if (globalStore.language == 'en') return en;
 | |
|     return '';
 | |
| });
 | |
| 
 | |
| const assemblySize = computed((): string => globalStore.assemblySize);
 | |
| 
 | |
| let isRouterAlive = ref(true);
 | |
| 
 | |
| const reload = () => {
 | |
|     isRouterAlive.value = false;
 | |
|     nextTick(function () {
 | |
|         isRouterAlive.value = true;
 | |
|     });
 | |
| };
 | |
| provide('reload', reload);
 | |
| </script>
 | |
| 
 | |
| <style scoped lang="scss"></style>
 |