-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (47 loc) · 1.6 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<title>HANGUL</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta charset="UTF-8">
<link rel="stylesheet" type="text/css" href="style.css?ver=3.0.3">
<script src="build/vendor/vue.js"></script>
</head>
<script type="text/x-template" id="listen-quiz-template">
<div>
<div class="title">HANGUL</div>
<div class="styling">
<result-item></result-item>
<last-answer></last-answer>
<play-button></play-button>
<clear-button></clear-button>
</div>
<div class="answer" id="answers">
<answer-buttons v-bind:method="'isRightSyllable'" v-for="kcombo in kcomboKeys" v-bind:kcombo="kcombo"></answer-buttons>
</div>
<score id="score"></score>
<!-- <dropdown v-bind:items="items"></dropdown> -->
<!-- <audio-player></audio-player> -->
</div>
</script>
<script type="text/x-template" id="soundboard-template">
<div>
<div id="soundboard" slot="soundboard">
<div class="title">Hangul Soundboard</div>
<div class="answer" id="answers">
<answer-buttons v-bind:method="'playAudio'" v-for="kcombo in kcomboKeys" v-bind:kcombo="kcombo"></answer-buttons>
</div>
</div>
</div>
</script>
<body>
<div id="app" :kcombo-keys="kcomboKeys">
<component :is="currentView" :kcombo-keys="kcomboKeys"></component>
<audio-player></audio-player>
</div>
<div id="dropdown">
<dropdown v-bind:items="items"></dropdown>
</div>
</body>
<script src="js.js"></script>
</html>