Skip to content

Commit 7409ad4

Browse files
docs(kr): add a translation of an example in actions.md of guide docs (#1761)
* Add a translation of an example in actions.md of guide docs * Update docs/kr/guide/actions.md Co-authored-by: ChangJoo Park(박창주) <[email protected]> * Apply suggestions from code review Co-authored-by: ChangJoo Park(박창주) <[email protected]> Co-authored-by: ChangJoo Park(박창주) <[email protected]>
1 parent 7807af7 commit 7409ad4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

docs/kr/guide/actions.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,9 @@ export default {
111111
methods: {
112112
...mapActions([
113113
'increment' // this.increment()을 this.$store.dispatch('increment')에 매핑
114+
115+
// mapActions는 페이로드를 지원합니다.
116+
'incrementBy' // this.incrementBy(amount)를 this.$store.dispatch('incrementBy', amount)에 매핑
114117
]),
115118
...mapActions({
116119
add: 'increment' // this.add()을 this.$store.dispatch('increment')에 매핑

0 commit comments

Comments
 (0)