Skip to content

Commit

Permalink
docs: ✏️ update translations after sync
Browse files Browse the repository at this point in the history
Signed-off-by: Evgeniy Gromin <[email protected]>
  • Loading branch information
JonikUl committed Aug 17, 2024
1 parent 1259229 commit 149ee52
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/guide/essentials/list.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()` для объекта:

<div class="composition-api">

Expand Down
4 changes: 2 additions & 2 deletions src/guide/typescript/composition-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ import type { ComponentPublicInstance } from 'vue'
const child = ref<ComponentPublicInstance | null>(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
<!-- MyGenericModal.vue -->
Expand All @@ -440,7 +440,7 @@ defineExpose({
</script>
```

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
<!-- App.vue -->
Expand Down

0 comments on commit 149ee52

Please sign in to comment.