mirror of
https://github.com/microsoft/Web-Dev-For-Beginners.git
synced 2025-08-25 23:56:22 +02:00
update kr option to ko on quiz-app
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
<select v-model="locale">
|
<select v-model="locale">
|
||||||
<option>en</option>
|
<option>en</option>
|
||||||
<option>fr</option>
|
<option>fr</option>
|
||||||
<option>kr</option>
|
<option>ko</option>
|
||||||
</select>
|
</select>
|
||||||
</nav>
|
</nav>
|
||||||
<div id="app">
|
<div id="app">
|
||||||
|
@@ -1,14 +1,14 @@
|
|||||||
// index.js
|
// index.js
|
||||||
import en from './en.json';
|
import en from './en.json';
|
||||||
import fr from './fr.json';
|
import fr from './fr.json';
|
||||||
import kr from './kr.json';
|
import ko from './ko.json';
|
||||||
|
|
||||||
//export const defaultLocale = 'en';
|
//export const defaultLocale = 'en';
|
||||||
|
|
||||||
const messages = {
|
const messages = {
|
||||||
en: en[0],
|
en: en[0],
|
||||||
fr: fr[0],
|
fr: fr[0],
|
||||||
kr: kr[0],
|
ko: ko[0],
|
||||||
};
|
};
|
||||||
|
|
||||||
export default messages;
|
export default messages;
|
||||||
|
Reference in New Issue
Block a user