Fix math support

This commit is contained in:
2024-11-26 14:11:27 +01:00
parent 7b02670542
commit 2c90cf2224
4 changed files with 162 additions and 363 deletions

View File

@@ -54,7 +54,7 @@ async function toggleTheme() {
}
const { locale, setLocale, locales, t } = useI18n()
const currentLocale = computed(() => locales.filter(l => l.code === locale.value)[0])
const currentLocale = computed(() => locales.value.filter(l => l.code === locale.value)[0])
async function changeLocale() {
document.body.style.animation = 'switch-on .2s'