Преглед изворни кода

[RU] Translation update (#1366)

* structure.md исправлена опечатка

* actions.md мелкие правки

* api.md мелкие правки

* intro.md мелкие правки

* state.md мелкие правки

* strict.md мелкие правки

* testing.md мелкие правки

* actions.md правки

* testing.md правки

* Fix typos. ru

* SUMMARY.md правки заголовков

* Минусы на тире

* [RU] Moved to VuePress

* Fix & single quotes

* [RU] Update

* Remove settings.json

* fix link

* fix images links

* translated ru image and ai sources

* Localized images

* README.md исправлена ссылка

* api: formatting example

* api: fix links

* docs: remove core-concepts.md

* modules.md правка примеров
Alexander Sokolov пре 6 година
родитељ
комит
f626da2a76
2 измењених фајлова са 4 додато и 17 уклоњено
  1. 0 13
      docs/ru/guide/core-concepts.md
  2. 4 4
      docs/ru/guide/modules.md

+ 0 - 13
docs/ru/guide/core-concepts.md

@@ -1,13 +0,0 @@
-# Основные понятия
-
-В этих главах мы изучим основные понятия Vuex:
-
-* [Состояние](state.md)
-* [Геттеры](getters.md)
-* [Мутации](mutations.md)
-* [Действия](actions.md)
-* [Модули](modules.md)
-
-Для использования vuex необходимо глубокое понимание всех этих понятий.
-
-Давайте начнём.

+ 4 - 4
docs/ru/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()
   ])
   ])
 }
 }
 ```
 ```