From 149ee52887806abb5cad62925e7c8dcd0deec55c Mon Sep 17 00:00:00 2001 From: Evgeniy Gromin Date: Sat, 17 Aug 2024 10:59:38 +0400 Subject: [PATCH] =?UTF-8?q?docs:=20=E2=9C=8F=EF=B8=8F=20update=20translati?= =?UTF-8?q?ons=20after=20sync?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Evgeniy Gromin --- src/guide/essentials/list.md | 2 +- src/guide/typescript/composition-api.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/guide/essentials/list.md b/src/guide/essentials/list.md index f28a1308..74eb4ed0 100644 --- a/src/guide/essentials/list.md +++ b/src/guide/essentials/list.md @@ -134,7 +134,7 @@ items.forEach((item, index) => { ## Отображение свойств объекта через `v-for` {#v-for-with-an-object} -You can also use `v-for` to iterate through the properties of an object. The iteration order will be based on the result of calling `Object.values()` on the object: +Вы также можете использовать `v-for` для итерации по свойствам объекта. Порядок итерации будет основан на результате вызова `Object.values()` для объекта:
diff --git a/src/guide/typescript/composition-api.md b/src/guide/typescript/composition-api.md index ee899f65..6330cf77 100644 --- a/src/guide/typescript/composition-api.md +++ b/src/guide/typescript/composition-api.md @@ -423,7 +423,7 @@ import type { ComponentPublicInstance } from 'vue' const child = ref(null) ``` -In cases where the component referenced is a [generic component](/guide/typescript/overview.html#generic-components), for instance `MyGenericModal`: +В случаях, когда компонент, на который делается ссылка (ref), является [дженерик-компонентом](/guide/typescript/overview.html#generic-components), например `MyGenericModal`: ```vue @@ -440,7 +440,7 @@ defineExpose({ ``` -It needs to be referenced using `ComponentExposed` from the [`vue-component-type-helpers`](https://www.npmjs.com/package/vue-component-type-helpers) library as `InstanceType` won't work. +На него необходимо ссылаться с помощью `ComponentExposed` из библиотеки [`vue-component-type-helpers`](https://www.npmjs.com/package/vue-component-type-helpers), поскольку `InstanceType` не будет работать. ```vue