Skip to content

Commit 51ad10e

Browse files
authored
Merge pull request #210 from niceplugin/tutorial/init
tutorial/
2 parents 9aba4fd + 789e924 commit 51ad10e

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

ko-KR/.vitepress/theme/components/PreferenceSwitch.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -96,14 +96,14 @@ function useToggleFn(
9696
<label class="no-sfc-label" @click="toggleSFC(false)">HTML</label>
9797
<VTSwitch
9898
class="sfc-switch"
99-
aria-label="prefer single file component"
99+
aria-label="싱글 파일 컴포넌트를 추천합니다"
100100
:aria-checked="preferSFC"
101101
@click="toggleSFC()"
102102
/>
103103
<label class="sfc-label" @click="toggleSFC(true)">SFC</label>
104104
<a
105105
class="switch-link"
106-
title="About SFC"
106+
title="SFC에 대하여"
107107
href="/guide/scaling-up/sfc.html"
108108
@click="closeSideBar"
109109
>?</a>

ko-KR/src/tutorial/TutorialRepl.vue

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -121,17 +121,12 @@ updateExample()
121121
<div class="vt-doc" v-html="currentDescription"></div>
122122
<div class="hint" v-if="data[currentStep]?._hint">
123123
<button @click="toggleResult">
124-
{{ showingHint ? 'Reset' : 'Show me!' }}
124+
{{ showingHint ? '초기화' : '보여줘!' }}
125125
</button>
126126
</div>
127127
<footer>
128-
<a v-if="prevStep" :href="`#${prevStep}`"
129-
><VTIconChevronLeft class="vt-link-icon" style="margin: 0" />
130-
Prev</a
131-
>
132-
<a class="next-step" v-if="nextStep" :href="`#${nextStep}`"
133-
>Next <VTIconChevronRight class="vt-link-icon"
134-
/></a>
128+
<a v-if="prevStep" :href="`#${prevStep}`"><VTIconChevronLeft class="vt-link-icon" style="margin: 0" /> 이전</a>
129+
<a class="next-step" v-if="nextStep" :href="`#${nextStep}`">다음 <VTIconChevronRight class="vt-link-icon"/></a>
135130
</footer>
136131
</article>
137132
<Repl

0 commit comments

Comments
 (0)