We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea58140 commit f626da2Copy full SHA for f626da2
docs/ru/guide/core-concepts.md
docs/ru/guide/modules.md
@@ -209,8 +209,8 @@ computed: {
209
},
210
methods: {
211
...mapActions([
212
- 'some/nested/module/foo',
213
- 'some/nested/module/bar'
+ 'some/nested/module/foo', // -> this['some/nested/module/foo']()
+ 'some/nested/module/bar' // -> this['some/nested/module/bar']()
214
])
215
}
216
```
@@ -226,8 +226,8 @@ computed: {
226
227
228
...mapActions('some/nested/module', [
229
- 'foo',
230
- 'bar'
+ 'foo', // -> this.foo()
+ 'bar' // -> this.bar()
231
232
233
0 commit comments