Skip to content

Commit

Permalink
Apply suggestions from code review
Browse files Browse the repository at this point in the history
Co-authored-by: Bojan Rajh <[email protected]>
  • Loading branch information
jleifeld and bojanrajh authored Feb 11, 2025
1 parent 3649faa commit 5b1c95a
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ After (Vue 3):
</template>
```

More detailed guide: https://v3-migration.vuejs.org/breaking-changes/listeners-removed.html
More detailed guide about [`$listeners` breaking changes](https://v3-migration.vuejs.org/breaking-changes/listeners-removed.html).

#### `$scopedSlots` removed

Expand All @@ -65,11 +65,11 @@ After (Vue 3):
this.$slots.header()
```

More detailed guide: https://v3-migration.vuejs.org/breaking-changes/slots-unification.html
More detailed guide about [`$slots` unification breaking changes](https://v3-migration.vuejs.org/breaking-changes/slots-unification.html).

#### `$children` removed

Vue 2 allowed access to child components using $children. In Vue 3, this is no longer supported, and you should use template refs instead.
Vue 2 allowed access to child components using `$children`. In Vue 3, this is no longer supported, and you should use template refs instead.

Before (Vue 2):

Expand All @@ -85,7 +85,7 @@ After (Vue 3):
this.$refs.childrenRef.childrenMethod();
```

More detailed guide: https://v3-migration.vuejs.org/breaking-changes/children
More detailed guide about [`$children` breaking changes](https://v3-migration.vuejs.org/breaking-changes/children).

#### Some Events API removed

Expand Down Expand Up @@ -122,7 +122,7 @@ beforeDestroy() {
}
```

More detailed guide: https://v3-migration.vuejs.org/breaking-changes/events-api.html
More detailed guide about [Events API breaking changes](https://v3-migration.vuejs.org/breaking-changes/events-api.html).

#### `$set`, `$delete` removed

Expand All @@ -144,4 +144,4 @@ delete this.myObject.key;

## Conclusion

With Shopware 6.7, the Vue migration build will be fully removed. To ensure compatibility, all plugins must be updated to Vue 3 following the official migration guide. If you encounter challenges during migration, refer to the official Vue 3 documentation or seek assistance from the Shopware developer community.
With Shopware 6.7, the Vue migration build will be fully removed. To ensure compatibility, all plugins must be updated to Vue 3 following the official migration guide. If you encounter challenges during migration, refer to the official Vue 3 documentation or seek assistance from the Shopware developer community.

0 comments on commit 5b1c95a

Please sign in to comment.