2022-03-24 14:02:30 +00:00
|
|
|
<script setup>
|
2022-12-13 11:21:12 +00:00
|
|
|
import { onMounted } from 'vue';
|
2022-03-24 14:02:30 +00:00
|
|
|
import { useQuasar } 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();
|
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 {
|
|
|
|
locale.value = fallbackLocale;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
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>
|
2022-03-24 13:57:11 +00:00
|
|
|
<router-view />
|
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>
|