From d4af188624c70ef8de8eee5fbdacac12f97f0649 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Fern=C3=A1ndez?= Date: Fri, 6 Sep 2024 16:28:54 +0000 Subject: [PATCH 1/2] fix(guide/suspense): missing v3.3+ badge in suspensible prop Signed-off-by: GitHub --- src/guide/built-ins/suspense.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/built-ins/suspense.md b/src/guide/built-ins/suspense.md index 12458db171..aa05d4fb79 100644 --- a/src/guide/built-ins/suspense.md +++ b/src/guide/built-ins/suspense.md @@ -133,7 +133,7 @@ The following example shows how to nest these components so that they all behave Vue Router has built-in support for [lazily loading components](https://router.vuejs.org/guide/advanced/lazy-loading.html) using dynamic imports. These are distinct from async components and currently they will not trigger ``. However, they can still have async components as descendants and those can trigger `` in the usual way. -## Nested Suspense {#nested-suspense} +## Nested Suspense {#nested-suspense} When we have multiple async components (common for nested or layout-based routes) like this: From 5f2694953be53af13122f10e42d1f924e4955c27 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fernando=20Fern=C3=A1ndez?= Date: Thu, 19 Sep 2024 16:20:29 +0000 Subject: [PATCH 2/2] fix: replace badge with list item --- src/guide/built-ins/suspense.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/guide/built-ins/suspense.md b/src/guide/built-ins/suspense.md index aa05d4fb79..ea8bdcdd4d 100644 --- a/src/guide/built-ins/suspense.md +++ b/src/guide/built-ins/suspense.md @@ -133,7 +133,9 @@ The following example shows how to nest these components so that they all behave Vue Router has built-in support for [lazily loading components](https://router.vuejs.org/guide/advanced/lazy-loading.html) using dynamic imports. These are distinct from async components and currently they will not trigger ``. However, they can still have async components as descendants and those can trigger `` in the usual way. -## Nested Suspense {#nested-suspense} +## Nested Suspense {#nested-suspense} + +- Only supported in 3.3+ When we have multiple async components (common for nested or layout-based routes) like this: