Skip to content

Commit 3696daf

Browse files
committed
리스트 문서 수정
1 parent 26c8cfb commit 3696daf

File tree

7 files changed

+796
-1057
lines changed

7 files changed

+796
-1057
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "vuejs.org",
33
"private": true,
44
"hexo": {
5-
"version": "5.0.2"
5+
"version": "5.3.0"
66
},
77
"scripts": {
88
"start": "hexo server",
@@ -29,4 +29,4 @@
2929
"hoek": "^6.1.3",
3030
"request": "^2.88.2"
3131
}
32-
}
32+
}

src/v2/guide/installation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: 설치방법
33
type: guide
44
order: 1
5-
vue_version: 2.6.11
5+
vue_version: 2.6.12
66
gz_size: "33.30"
77
---
88

@@ -51,7 +51,7 @@ Vue를 사용할 때, 브라우저에 [Vue Devtools](https://github.com/vuejs/vu
5151

5252
``` html
5353
<script type="module">
54-
import Vue from 'https://cdn.jsdelivr.net/npm/[email protected].11/dist/vue.esm.browser.js'
54+
import Vue from 'https://cdn.jsdelivr.net/npm/[email protected].12/dist/vue.esm.browser.js'
5555
</script>
5656
```
5757

src/v2/guide/list.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ methods: {
512512
</div>
513513
```
514514

515-
<p class="tip">`is="todo-item"` 속성을 보면 `&lt;li&gt;` 엘리먼트는 `&lt;ul&gt;` 안에서만 유효합니다. `&lt;todo-item&gt;`과 같은 일을 하지만 잠재적인 브라우저의 구문 분석 오류를 해결 합니다. 자세한 내용은 [DOM 템플릿 파싱 주의사항](components.html#DOM-Template-Parsing-Caveats)을 참조하세요.</p>
515+
`is="todo-item"` 속성을 보면 `&lt;li&gt;` 엘리먼트는 `&lt;ul&gt;` 안에서만 유효합니다. `&lt;todo-item&gt;`과 같은 일을 하지만 잠재적인 브라우저의 구문 분석 오류를 해결 합니다. 자세한 내용은 [DOM 템플릿 파싱 주의사항](components.html#DOM-Template-Parsing-Caveats)을 참조하세요.
516516

517517
``` js
518518
Vue.component('todo-item', {

themes/vue/_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
site_description: "Vue.js - 프로그레시브 자바스크립트 프레임워크"
22
google_analytics: UA-89623208-1
33
root_domain: vuejs.org
4-
vue_version: 2.6.11
4+
vue_version: 2.6.12
55
platinum_sponsors_china:
66
- url: 'http://www.dcloud.io/?hmsr=vuejsorg&hmpl=&hmcu=&hmkw=&hmci='
77
img: dcloud.gif

themes/vue/source/js/vue.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* Vue.js v2.6.11
3-
* (c) 2014-2019 Evan You
2+
* Vue.js v2.6.12
3+
* (c) 2014-2020 Evan You
44
* Released under the MIT License.
55
*/
66
(function (global, factory) {
@@ -5443,7 +5443,7 @@
54435443
value: FunctionalRenderContext
54445444
});
54455445

5446-
Vue.version = '2.6.11';
5446+
Vue.version = '2.6.12';
54475447

54485448
/* */
54495449

@@ -7649,7 +7649,7 @@
76497649
// skip the update if old and new VDOM state is the same.
76507650
// `value` is handled separately because the DOM value may be temporarily
76517651
// out of sync with VDOM state due to focus, composition and modifiers.
7652-
// This #4521 by skipping the unnecesarry `checked` update.
7652+
// This #4521 by skipping the unnecessary `checked` update.
76537653
cur !== oldProps[key]
76547654
) {
76557655
// some property updates can throw
@@ -9894,7 +9894,7 @@
98949894
}
98959895
},
98969896
comment: function comment (text, start, end) {
9897-
// adding anyting as a sibling to the root node is forbidden
9897+
// adding anything as a sibling to the root node is forbidden
98989898
// comments should still be allowed, but ignored
98999899
if (currentParent) {
99009900
var child = {

themes/vue/source/js/vue.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)