Skip to content

Commit 78ff983

Browse files
Jinjiangktsn
authored andcommitted
applied #1361 to all languages (#1375)
1 parent de9636c commit 78ff983

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

docs/ja/guide/modules.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -183,8 +183,8 @@ computed: {
183183
},
184184
methods: {
185185
...mapActions([
186-
'some/nested/module/foo',
187-
'some/nested/module/bar'
186+
'some/nested/module/foo', // -> this['some/nested/module/foo']()
187+
'some/nested/module/bar' // -> this['some/nested/module/bar']()
188188
])
189189
}
190190
```
@@ -200,8 +200,8 @@ computed: {
200200
},
201201
methods: {
202202
...mapActions('some/nested/module', [
203-
'foo',
204-
'bar'
203+
'foo', // -> this.foo()
204+
'bar' // -> this.bar()
205205
])
206206
}
207207
```

docs/kr/guide/modules.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,8 @@ computed: {
209209
},
210210
methods: {
211211
...mapActions([
212-
'some/nested/module/foo',
213-
'some/nested/module/bar'
212+
'some/nested/module/foo', // -> this['some/nested/module/foo']()
213+
'some/nested/module/bar' // -> this['some/nested/module/bar']()
214214
])
215215
}
216216
```
@@ -226,8 +226,8 @@ computed: {
226226
},
227227
methods: {
228228
...mapActions('some/nested/module', [
229-
'foo',
230-
'bar'
229+
'foo', // -> this.foo()
230+
'bar' // -> this.bar()
231231
])
232232
}
233233
```

docs/ptbr/guide/modules.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,8 @@ computed: {
209209
},
210210
methods: {
211211
...mapActions([
212-
'some/nested/module/foo',
213-
'some/nested/module/bar'
212+
'some/nested/module/foo', // -> this['some/nested/module/foo']()
213+
'some/nested/module/bar' // -> this['some/nested/module/bar']()
214214
])
215215
}
216216
```
@@ -226,8 +226,8 @@ computed: {
226226
},
227227
methods: {
228228
...mapActions('some/nested/module', [
229-
'foo',
230-
'bar'
229+
'foo', // -> this.foo()
230+
'bar' // -> this.bar()
231231
])
232232
}
233233
```

docs/zh/guide/modules.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -209,8 +209,8 @@ computed: {
209209
},
210210
methods: {
211211
...mapActions([
212-
'some/nested/module/foo',
213-
'some/nested/module/bar'
212+
'some/nested/module/foo', // -> this['some/nested/module/foo']()
213+
'some/nested/module/bar' // -> this['some/nested/module/bar']()
214214
])
215215
}
216216
```
@@ -226,8 +226,8 @@ computed: {
226226
},
227227
methods: {
228228
...mapActions('some/nested/module', [
229-
'foo',
230-
'bar'
229+
'foo', // -> this.foo()
230+
'bar' // -> this.bar()
231231
])
232232
}
233233
```

0 commit comments

Comments
 (0)