Skip to content

Commit 7b41586

Browse files
authored
Merge pull request #228 from niceplugin/examples/hello-world
예제 번역: /examples/hello-world
2 parents 9b5b931 + 07dfef0 commit 7b41586

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

ko-KR/.vitepress/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -424,7 +424,7 @@ export const sidebar = {
424424
text: '기초',
425425
items: [
426426
{
427-
text: 'Hello World',
427+
text: '안녕 Vue',
428428
link: '/examples/#hello-world'
429429
},
430430
{

ko-KR/src/examples/src/hello-world/App/composition.js

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ import { ref } from 'vue'
22

33
export default {
44
setup() {
5-
// A "ref" is a reactive data source that stores a value.
6-
// Technically, we don't need to wrap the string with ref()
7-
// in order to display it, but we will see in the next
8-
// example why it is needed if we ever intend to change
9-
// the value.
10-
const message = ref('Hello World!')
5+
// "ref"는 값을 저장하는 반응형 데이터 소스입니다.
6+
// 기술적으로 문자열을 표시하기 위해
7+
// ref()로 문자열을 래핑할 필요는 없지만,
8+
// 값을 변경하려는 경우, 왜 래핑이 필요한지
9+
// 다음 예제에서 알게 됩니다.
10+
const message = ref('안녕 Vue!')
1111

1212
return {
1313
message
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
export default {
22
data() {
33
return {
4-
message: 'Hello World!'
4+
message: '안녕 Vue!'
55
}
66
}
7-
}
7+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Say Hello World with Vue!
1+
Vue로 "안녕 Vue!"라고 말해보세요!

0 commit comments

Comments
 (0)