k5web/src/App.vue

36 lines
969 B
Vue
Raw Normal View History

2024-01-24 13:40:15 +00:00
<template>
<a-config-provider :locale="locale">
<router-view />
<global-setting />
</a-config-provider>
</template>
<script lang="ts" setup>
import { computed } from 'vue';
import zhCN from '@arco-design/web-vue/es/locale/lang/zh-cn';
import GlobalSetting from '@/components/global-setting/index.vue';
import useLocale from '@/hooks/locale';
2024-01-31 06:24:36 +00:00
import Aegis from 'aegis-web-sdk';
// 遥测
if(location.hostname == 'k5.vicicode.com'){
const aegis = new Aegis({
id: 'yr5DeslJkz3Qn20jg0', // 上报 id
reportApiSpeed: true, // 接口测速
reportAssetSpeed: true, // 静态资源测速
spa: true, // spa 应用页面跳转的时候开启 pv 计算
hostUrl: 'https://rumt-zh.com'
});
}
2024-01-24 13:40:15 +00:00
const { currentLocale } = useLocale();
const locale = computed(() => {
switch (currentLocale.value) {
case 'zh-CN':
return zhCN;
default:
2024-01-24 15:02:15 +00:00
return zhCN;
2024-01-24 13:40:15 +00:00
}
});
</script>