2022-03-24 14:02:30 +00:00
|
|
|
<script setup>
|
2022-12-13 11:21:12 +00:00
|
|
|
import { onMounted } from 'vue';
|
2024-01-09 13:37:44 +00:00
|
|
|
import { useQuasar, Dark } from 'quasar';
|
2022-08-03 11:48:45 +00:00
|
|
|
import { useI18n } from 'vue-i18n';
|
|
|
|
|
2022-03-24 14:02:30 +00:00
|
|
|
const quasar = useQuasar();
|
2023-03-15 10:28:18 +00:00
|
|
|
const { availableLocales, locale, fallbackLocale } = useI18n();
|
2024-01-09 13:37:44 +00:00
|
|
|
Dark.set(true);
|
2022-03-24 14:02:30 +00:00
|
|
|
|
2022-12-13 11:21:12 +00:00
|
|
|
onMounted(() => {
|
|
|
|
let userLang = window.navigator.language;
|
|
|
|
if (userLang.includes('-')) {
|
|
|
|
userLang = userLang.split('-')[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (availableLocales.includes(userLang)) {
|
|
|
|
locale.value = userLang;
|
|
|
|
} else {
|
2024-03-27 12:36:51 +00:00
|
|
|
locale.value = fallbackLocale.value;
|
2022-12-13 11:21:12 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2022-03-24 14:02:30 +00:00
|
|
|
quasar.iconMapFn = (iconName) => {
|
|
|
|
if (iconName.startsWith('vn:')) {
|
|
|
|
const name = iconName.substring(3);
|
|
|
|
|
|
|
|
return {
|
2023-02-13 13:08:18 +00:00
|
|
|
cls: `icon-${name} notranslate`,
|
2022-03-24 14:02:30 +00:00
|
|
|
};
|
|
|
|
}
|
2022-11-29 13:45:48 +00:00
|
|
|
|
|
|
|
return {
|
2023-02-13 13:08:18 +00:00
|
|
|
cls: 'material-symbols-outlined notranslate',
|
2022-11-29 13:45:48 +00:00
|
|
|
content: iconName,
|
|
|
|
};
|
2022-03-24 14:02:30 +00:00
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
2022-03-24 12:33:14 +00:00
|
|
|
<template>
|
2023-04-11 11:31:03 +00:00
|
|
|
<RouterView />
|
2022-03-24 12:33:14 +00:00
|
|
|
</template>
|
|
|
|
|
2022-03-24 14:02:30 +00:00
|
|
|
<style lang="scss">
|
|
|
|
.body--light {
|
|
|
|
background-color: #eee;
|
|
|
|
}
|
|
|
|
</style>
|