Browse Source

[DOC KR] update doc for issues #1203 (#1204)

* update updated Api description

- Component Binding Helpers
- registerModule

* update add .idea in .gitignore for WebStorm users
- add .idea

* update fix for issues #1203
 - change 객체 전파 연산자 to 객체 확산 연산자 (I refer to Redux)
   - https://deminoth.github.io/redux/recipes/UsingObjectSpreadOperator.html

* - remove gitignore for now

* - add new line

* update add (Object Spread Operator)
 for Korean

* remove .idea

 sorry

* update (확산) => (전개)
Bichi Kim 7 years ago
parent
commit
d8c145e721
3 changed files with 5 additions and 5 deletions
  1. 1 1
      docs/kr/getters.md
  2. 1 1
      docs/kr/mutations.md
  3. 3 3
      docs/kr/state.md

+ 1 - 1
docs/kr/getters.md

@@ -71,7 +71,7 @@ import { mapGetters } from 'vuex'
 export default {
 export default {
   // ...
   // ...
   computed: {
   computed: {
-    // getter를 객체 전파 연산자로 계산하여 추가합니다.
+    // getter를 객체 전개 연산자(Object Spread Operator)로 계산하여 추가합니다.
     ...mapGetters([
     ...mapGetters([
       'doneTodosCount',
       'doneTodosCount',
       'anotherGetter',
       'anotherGetter',

+ 1 - 1
docs/kr/mutations.md

@@ -85,7 +85,7 @@ Vuex 저장소의 상태는 Vue에 의해 반응하므로, 상태를 변경하
 
 
   - `Vue.set(obj, 'newProp', 123)`을 사용하거나,
   - `Vue.set(obj, 'newProp', 123)`을 사용하거나,
 
 
-  - 객체를 새로운 것으로 교체하십시오. 예를 들어, 3 단계 [객체 전파 문법](https://github.com/sebmarkbage/ecmascript-rest-spread)을 사용하면 다음과 같이 작성할 수 있습니다.
+  - 객체를 새로운 것으로 교체하십시오. 예를 들어, 3 단계 [객체 확산 문법](https://github.com/sebmarkbage/ecmascript-rest-spread)을 사용하면 다음과 같이 작성할 수 있습니다.
 
 
     ``` js
     ``` js
     state.obj = { ...state.obj, newProp: 123 }
     state.obj = { ...state.obj, newProp: 123 }

+ 3 - 3
docs/kr/state.md

@@ -90,14 +90,14 @@ computed: mapState([
 ])
 ])
 ```
 ```
 
 
-### 객체 전파 연산자
+### 객체 전개 연산자 (Object Spread Operator)
 
 
-`mapState`는 객체를 반환합니다. 다른 로컬 영역의 계산된 속성과 함께 사용하려면 어떻게 해야 하나요? 일반적으로, 최종 객체를 `computed`에 전달할 수 있도록 여러 객체를 하나로 병합하는 유틸리티를 사용해야합니다. 그러나 (3 단계 ECMAScript 스펙) [객체 확산 연산자](https://github.com/sebmarkbage/ecmascript-rest-spread)을 사용하면 문법을 매우 단순화 할 수 있습니다.
+`mapState`는 객체를 반환합니다. 다른 로컬 영역의 계산된 속성과 함께 사용하려면 어떻게 해야 하나요? 일반적으로, 최종 객체를 `computed`에 전달할 수 있도록 여러 객체를 하나로 병합하는 유틸리티를 사용해야합니다. 그러나 (3 단계 ECMAScript 스펙) [객체 전개 연산자 (Object Spread Operator)](https://github.com/sebmarkbage/ecmascript-rest-spread)을 사용하면 문법을 매우 단순화 할 수 있습니다.
 
 
 ``` js
 ``` js
 computed: {
 computed: {
   localComputed () { /* ... */ },
   localComputed () { /* ... */ },
-  // 이것을 객체 전파 연산자를 사용하여 외부 객체에 추가 하십시오.
+  // 이것을 객체 전개 연산자(Object Spread Operator)를 사용하여 외부 객체에 추가 하십시오.
   ...mapState({
   ...mapState({
     // ...
     // ...
   })
   })