mirror of
https://github.com/microsoft/Web-Dev-For-Beginners.git
synced 2025-08-06 06:47:50 +02:00
get language of quiz by query param
This commit is contained in:
@@ -5,7 +5,6 @@
|
||||
<label for="locale">locale</label>
|
||||
<select v-model="locale">
|
||||
<option>en</option>
|
||||
<option>fr</option>
|
||||
<option>id</option>
|
||||
</select>
|
||||
</nav>
|
||||
@@ -29,13 +28,18 @@ export default {
|
||||
Quiz,
|
||||
},
|
||||
data() {
|
||||
return { locale: "en" };
|
||||
return {
|
||||
locale: "en",
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
locale(val) {
|
||||
this.$root.$i18n.locale = val;
|
||||
},
|
||||
},
|
||||
created() {
|
||||
this.locale = this.$route.query.loc;
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
|
@@ -1,10 +1,9 @@
|
||||
<template>
|
||||
<div class="card">
|
||||
<div v-for="q in questions" :key="q.id">
|
||||
|
||||
<div v-if="route == q.id">
|
||||
<h2>{{q.title}}</h2>
|
||||
<hr/>
|
||||
<h2>{{ q.title }}</h2>
|
||||
<hr />
|
||||
<h3 v-if="complete" class="message">{{ $t("complete") }}</h3>
|
||||
<div v-else>
|
||||
<h3 v-if="error" class="error">{{ $t("error") }}</h3>
|
||||
@@ -38,12 +37,13 @@ export default {
|
||||
complete: false,
|
||||
error: false,
|
||||
route: "",
|
||||
locale: "",
|
||||
};
|
||||
},
|
||||
computed: {
|
||||
questions() {
|
||||
return this.$t("quizzes");
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
i18n: { messages },
|
||||
@@ -65,6 +65,7 @@ export default {
|
||||
},
|
||||
created() {
|
||||
this.route = this.$route.params.id;
|
||||
this.locale = this.$route.query.loc;
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user