小程序后台管理系统
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

43 lines
1.1 KiB

<template>
<ele-config-provider
:map-key="MAP_KEY"
:keep-alive="keepAlive"
:license="LICENSE_CODE"
>
<a-config-provider :locale="antLocale">
<router-view />
</a-config-provider>
</ele-config-provider>
</template>
<script lang="ts" setup>
import { unref, computed } from 'vue';
import { storeToRefs } from 'pinia';
import { useThemeStore } from '@/store/modules/theme';
import {
MAP_KEY,
MAP_CODE,
LICENSE_CODE,
TAB_KEEP_ALIVE
} from '@/config/setting';
import { useSetDocumentTitle } from '@/utils/document-title-util';
import { useLocale } from '@/i18n/use-locale';
const themeStore = useThemeStore();
const { showTabs } = storeToRefs(themeStore);
// 恢复主题
themeStore.recoverTheme();
// 切换路由自动更新浏览器页签标题
useSetDocumentTitle();
// 国际化配置
const { antLocale } = useLocale();
// 用于内链 iframe 组件获取 KeepAlive
const keepAlive = computed(() => TAB_KEEP_ALIVE && unref(showTabs));
window._AMapSecurityConfig = {
securityJsCode: MAP_CODE
};
</script>