Forráskód Böngészése

applied #1361 to all languages (#1375)

勾三股四 6 éve
szülő
commit
78ff983304

+ 4 - 4
docs/ja/guide/modules.md

@@ -183,8 +183,8 @@ computed: {
 },
 },
 methods: {
 methods: {
   ...mapActions([
   ...mapActions([
-    'some/nested/module/foo',
-    'some/nested/module/bar'
+    'some/nested/module/foo', // -> this['some/nested/module/foo']()
+    'some/nested/module/bar' // -> this['some/nested/module/bar']()
   ])
   ])
 }
 }
 ```
 ```
@@ -200,8 +200,8 @@ computed: {
 },
 },
 methods: {
 methods: {
   ...mapActions('some/nested/module', [
   ...mapActions('some/nested/module', [
-    'foo',
-    'bar'
+    'foo', // -> this.foo()
+    'bar' // -> this.bar()
   ])
   ])
 }
 }
 ```
 ```

+ 4 - 4
docs/kr/guide/modules.md

@@ -209,8 +209,8 @@ computed: {
 },
 },
 methods: {
 methods: {
   ...mapActions([
   ...mapActions([
-    'some/nested/module/foo',
-    'some/nested/module/bar'
+    'some/nested/module/foo', // -> this['some/nested/module/foo']()
+    'some/nested/module/bar' // -> this['some/nested/module/bar']()
   ])
   ])
 }
 }
 ```
 ```
@@ -226,8 +226,8 @@ computed: {
 },
 },
 methods: {
 methods: {
   ...mapActions('some/nested/module', [
   ...mapActions('some/nested/module', [
-    'foo',
-    'bar'
+    'foo', // -> this.foo()
+    'bar' // -> this.bar()
   ])
   ])
 }
 }
 ```
 ```

+ 4 - 4
docs/ptbr/guide/modules.md

@@ -209,8 +209,8 @@ computed: {
 },
 },
 methods: {
 methods: {
   ...mapActions([
   ...mapActions([
-    'some/nested/module/foo',
-    'some/nested/module/bar'
+    'some/nested/module/foo', // -> this['some/nested/module/foo']()
+    'some/nested/module/bar' // -> this['some/nested/module/bar']()
   ])
   ])
 }
 }
 ```
 ```
@@ -226,8 +226,8 @@ computed: {
 },
 },
 methods: {
 methods: {
   ...mapActions('some/nested/module', [
   ...mapActions('some/nested/module', [
-    'foo',
-    'bar'
+    'foo', // -> this.foo()
+    'bar' // -> this.bar()
   ])
   ])
 }
 }
 ```
 ```

+ 4 - 4
docs/zh/guide/modules.md

@@ -209,8 +209,8 @@ computed: {
 },
 },
 methods: {
 methods: {
   ...mapActions([
   ...mapActions([
-    'some/nested/module/foo',
-    'some/nested/module/bar'
+    'some/nested/module/foo', // -> this['some/nested/module/foo']()
+    'some/nested/module/bar' // -> this['some/nested/module/bar']()
   ])
   ])
 }
 }
 ```
 ```
@@ -226,8 +226,8 @@ computed: {
 },
 },
 methods: {
 methods: {
   ...mapActions('some/nested/module', [
   ...mapActions('some/nested/module', [
-    'foo',
-    'bar'
+    'foo', // -> this.foo()
+    'bar' // -> this.bar()
   ])
   ])
 }
 }
 ```
 ```