-
-
Notifications
You must be signed in to change notification settings - Fork 5k
Update docs in Korean (2.6.0+) #1625
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from all commits
Commits
Show all changes
22 commits
Select commit
Hold shift + click to select a range
1ef6605
Update SUMMARY.md
ChangJoo-Park af1041e
Update navigation-guards
ChangJoo-Park edbf51f
Update getting-started
ChangJoo-Park 6055f7d
Update history-mode
ChangJoo-Park c8dc391
Update named-routes
ChangJoo-Park c6a3c22
Rollback example url
ChangJoo-Park 2a0586e
Update passing-props.md
ChangJoo-Park 5d0ed39
Update passing-props
ChangJoo-Park 70254cc
Update data-fetching
ChangJoo-Park afd9ad7
Update lazy-loading.md
ChangJoo-Park 6bd915b
Update navigation-guards
ChangJoo-Park 0c8d341
Update scroll-behavior.md
ChangJoo-Park bc0b5c9
Update transitions.md
ChangJoo-Park c7d3933
Update options.md
ChangJoo-Park 007c12c
Update router-instance.md
ChangJoo-Park 3073cea
Update router-link.md
ChangJoo-Park c3d4b04
fix by Review - data-fetching
ChangJoo-Park fed7c91
fix by Review - lazy-loading
ChangJoo-Park 6275c16
fix by Review - navigation-guards
ChangJoo-Park 6118e8d
fix by Review - API
ChangJoo-Park c99b528
fix by Review - named routes
ChangJoo-Park eaea2b0
Fix by review - options `router-link`
ChangJoo-Park File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,10 +26,10 @@ | |
<!-- 이렇게 렌더링 됩니다. --> | ||
<a href="home">Home</a> | ||
|
||
<!-- v-bind를 이용한 표현식 --> | ||
<!-- `v-bind`를 이용한 표현식 --> | ||
<router-link v-bind:to="'home'">Home</router-link> | ||
|
||
<!-- v-bind를 생략하면 다른 prop를 바인딩 하는 것과 같습니다. --> | ||
<!-- `v-bind`를 생략하면 다른 prop를 바인딩 하는 것과 같습니다. --> | ||
<router-link :to="'home'">Home</router-link> | ||
|
||
<!-- 위와 같습니다. --> | ||
|
@@ -38,7 +38,7 @@ | |
<!-- 이름을 가지는 라우트 --> | ||
<router-link :to="{ name: 'user', params: { userId: 123 }}">User</router-link> | ||
|
||
<!-- 쿼리가 있으면, /register?plan=private 이 됩니다. --> | ||
<!-- 쿼리가 있으면, `/register?plan=private` 이 됩니다. --> | ||
<router-link :to="{ path: 'register', query: { plan: 'private' }}">Register</router-link> | ||
``` | ||
|
||
|
@@ -99,7 +99,7 @@ | |
이것의 결과는 `<router-link to="/">`가 모든 라우터에 대해 활성화 될 것입니다! 링크를 "완전 일치 모드"로 강제하려면 `exact` prop를 사용하십시오. | ||
|
||
``` html | ||
<!-- 이 링크는 / 에서만 active 됩니다 --> | ||
<!-- 이 링크는 `/` 에서만 active 됩니다 --> | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. active -> 활성화 |
||
<router-link to="/" exact> | ||
``` | ||
|
||
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
98라인에도 57라인과 통일해서 백틱을 넣으면 좋겠습니다.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
추가했습니다 👍