From 5b1c95a4d95d0e5fed05526af49b4927e8add88d Mon Sep 17 00:00:00 2001 From: Jannis Leifeld Date: Tue, 11 Feb 2025 07:59:43 +0100 Subject: [PATCH] Apply suggestions from code review Co-authored-by: Bojan Rajh <117360292+bojanrajh@users.noreply.github.com> --- .../system-updates/vue-migration-build.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/guides/plugins/plugins/administration/system-updates/vue-migration-build.md b/guides/plugins/plugins/administration/system-updates/vue-migration-build.md index 36329209c..ecdbbe522 100644 --- a/guides/plugins/plugins/administration/system-updates/vue-migration-build.md +++ b/guides/plugins/plugins/administration/system-updates/vue-migration-build.md @@ -47,7 +47,7 @@ After (Vue 3): ``` -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 @@ -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): @@ -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 @@ -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 @@ -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. \ No newline at end of file +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.