Skip to content
Snippets Groups Projects
Commit b43c64db authored by Cee Nell's avatar Cee Nell
Browse files

watch route.params.lang for changes in url

parent 8d006813
No related branches found
No related tags found
1 merge request!78Ensure data labels get translated with dropdown selection
......@@ -10,7 +10,7 @@
<script setup>
import { ref } from 'vue';
import { ref, watch } from 'vue';
import { useI18n } from 'vue-i18n';
import { useRouter, useRoute } from 'vue-router';
......@@ -21,7 +21,7 @@ const route = useRoute();
// Create a reactive variable to track the selected language
const selectedLanguage = ref(locale.value);
function handleLanguageChange(event) {
function handleLanguageChange() {
switchLanguage(selectedLanguage.value);
}
......@@ -38,6 +38,18 @@ function switchLanguage(lang) {
});
}
}
// Watch for changes in route language parameter to sync with selectedLanguage
watch(
() => route.params.lang,
(newLang) => {
if (newLang && locale.value !== newLang) {
locale.value = newLang;
selectedLanguage.value = newLang;
}
},
{ immediate: true }
);
</script>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment