Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions ko-KR/.vitepress/theme/components/PreferenceSwitch.vue
Original file line number Diff line number Diff line change
Expand Up @@ -96,14 +96,14 @@ function useToggleFn(
<label class="no-sfc-label" @click="toggleSFC(false)">HTML</label>
<VTSwitch
class="sfc-switch"
aria-label="prefer single file component"
aria-label="싱글 파일 컴포넌트를 추천합니다"
:aria-checked="preferSFC"
@click="toggleSFC()"
/>
<label class="sfc-label" @click="toggleSFC(true)">SFC</label>
<a
class="switch-link"
title="About SFC"
title="SFC에 대하여"
href="/guide/scaling-up/sfc.html"
@click="closeSideBar"
>?</a>
Expand Down
11 changes: 3 additions & 8 deletions ko-KR/src/tutorial/TutorialRepl.vue
Original file line number Diff line number Diff line change
Expand Up @@ -121,17 +121,12 @@ updateExample()
<div class="vt-doc" v-html="currentDescription"></div>
<div class="hint" v-if="data[currentStep]?._hint">
<button @click="toggleResult">
{{ showingHint ? 'Reset' : 'Show me!' }}
{{ showingHint ? '초기화' : '보여줘!' }}
</button>
</div>
<footer>
<a v-if="prevStep" :href="`#${prevStep}`"
><VTIconChevronLeft class="vt-link-icon" style="margin: 0" />
Prev</a
>
<a class="next-step" v-if="nextStep" :href="`#${nextStep}`"
>Next <VTIconChevronRight class="vt-link-icon"
/></a>
<a v-if="prevStep" :href="`#${prevStep}`"><VTIconChevronLeft class="vt-link-icon" style="margin: 0" /> 이전</a>
<a class="next-step" v-if="nextStep" :href="`#${nextStep}`">다음 <VTIconChevronRight class="vt-link-icon"/></a>
</footer>
</article>
<Repl
Expand Down