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: {
183
183
},
184
184
methods: {
185
185
... 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']()
188
188
])
189
189
}
190
190
```
@@ -200,8 +200,8 @@ computed: {
200
200
},
201
201
methods: {
202
202
... mapActions (' some/nested/module' , [
203
- ' foo' ,
204
- ' bar'
203
+ ' foo' , // -> this.foo()
204
+ ' bar' // -> this.bar()
205
205
])
206
206
}
207
207
```
Original file line number Diff line number Diff line change @@ -209,8 +209,8 @@ computed: {
209
209
},
210
210
methods: {
211
211
... 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']()
214
214
])
215
215
}
216
216
```
@@ -226,8 +226,8 @@ computed: {
226
226
},
227
227
methods: {
228
228
... mapActions (' some/nested/module' , [
229
- ' foo' ,
230
- ' bar'
229
+ ' foo' , // -> this.foo()
230
+ ' bar' // -> this.bar()
231
231
])
232
232
}
233
233
```
Original file line number Diff line number Diff line change @@ -209,8 +209,8 @@ computed: {
209
209
},
210
210
methods: {
211
211
... 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']()
214
214
])
215
215
}
216
216
```
@@ -226,8 +226,8 @@ computed: {
226
226
},
227
227
methods: {
228
228
... mapActions (' some/nested/module' , [
229
- ' foo' ,
230
- ' bar'
229
+ ' foo' , // -> this.foo()
230
+ ' bar' // -> this.bar()
231
231
])
232
232
}
233
233
```
Original file line number Diff line number Diff line change @@ -209,8 +209,8 @@ computed: {
209
209
},
210
210
methods: {
211
211
... 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']()
214
214
])
215
215
}
216
216
```
@@ -226,8 +226,8 @@ computed: {
226
226
},
227
227
methods: {
228
228
... mapActions (' some/nested/module' , [
229
- ' foo' ,
230
- ' bar'
229
+ ' foo' , // -> this.foo()
230
+ ' bar' // -> this.bar()
231
231
])
232
232
}
233
233
```
You can’t perform that action at this time.
0 commit comments