File tree Expand file tree Collapse file tree 4 files changed +16
-16
lines changed
Expand file tree Collapse file tree 4 files changed +16
-16
lines changed Original file line number Diff line number Diff line change @@ -183,8 +183,8 @@ computed: {
183183},
184184methods: {
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},
201201methods: {
202202 ... mapActions (' some/nested/module' , [
203- ' foo' ,
204- ' bar'
203+ ' foo' , // -> this.foo()
204+ ' bar' // -> this.bar()
205205 ])
206206}
207207```
Original file line number Diff line number Diff line change @@ -209,8 +209,8 @@ computed: {
209209},
210210methods: {
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},
227227methods: {
228228 ... mapActions (' some/nested/module' , [
229- ' foo' ,
230- ' bar'
229+ ' foo' , // -> this.foo()
230+ ' bar' // -> this.bar()
231231 ])
232232}
233233```
Original file line number Diff line number Diff line change @@ -209,8 +209,8 @@ computed: {
209209},
210210methods: {
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},
227227methods: {
228228 ... mapActions (' some/nested/module' , [
229- ' foo' ,
230- ' bar'
229+ ' foo' , // -> this.foo()
230+ ' bar' // -> this.bar()
231231 ])
232232}
233233```
Original file line number Diff line number Diff line change @@ -209,8 +209,8 @@ computed: {
209209},
210210methods: {
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},
227227methods: {
228228 ... mapActions (' some/nested/module' , [
229- ' foo' ,
230- ' bar'
229+ ' foo' , // -> this.foo()
230+ ' bar' // -> this.bar()
231231 ])
232232}
233233```
You can’t perform that action at this time.
0 commit comments