Skip to content

Commit

Permalink
Merge pull request #474 from JonikUl/update-translations
Browse files Browse the repository at this point in the history
Update translations after sync
  • Loading branch information
Ibochkarev authored Aug 17, 2024
2 parents 1259229 + 149ee52 commit a750610
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

1 comment on commit a750610

@vercel
Copy link

@vercel vercel bot commented on a750610 Aug 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.