Files
orion-visor/orion-ops-ui/src/App.vue
2023-10-18 17:11:27 +08:00

32 lines
796 B
Vue

<template>
<a-config-provider :locale="locale">
<router-view />
<app-setting ref="appSettingRef" />
</a-config-provider>
</template>
<script lang="ts" setup>
import { computed, provide, ref } from 'vue';
import zhCN from '@arco-design/web-vue/es/locale/lang/zh-cn';
import AppSetting from '@/components/app/setting/index.vue';
import useLocale from '@/hooks/locale';
import { openAppSettingKey } from '@/types/symbol';
const { currentLocale } = useLocale();
const locale = computed(() => {
switch (currentLocale.value) {
case 'zh-CN':
return zhCN;
default:
return zhCN;
}
});
// 对外暴露打开配置方法
const appSettingRef = ref();
provide(openAppSettingKey, () => {
appSettingRef.value.open();
});
</script>