From 3412f872761b46122f208a07e46fde2c207636b8 Mon Sep 17 00:00:00 2001 From: Thomas Date: Thu, 11 Jul 2024 08:16:19 +0200 Subject: [PATCH] docs: remove a resolved issue from view transition docs (#28091) --- docs/1.getting-started/5.transitions.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/docs/1.getting-started/5.transitions.md b/docs/1.getting-started/5.transitions.md index ba60908ab4..ccabe0ed6d 100644 --- a/docs/1.getting-started/5.transitions.md +++ b/docs/1.getting-started/5.transitions.md @@ -470,6 +470,4 @@ export default defineNuxtRouteMiddleware(to => { ### Known issues -- View transitions may not work as expected with nested pages/layouts/async components owing to this upstream Vue bug: . If you make use of this pattern, you may need to delay adopting this experimental feature or implement it yourself. Feedback is very welcome. - - If you perform data fetching within your page setup functions, that you may wish to reconsider using this feature for the moment. (By design, View Transitions completely freeze DOM updates whilst they are taking place.) We're looking at restrict the View Transition to the final moments before `` resolves, but in the interim you may want to consider carefully whether to adopt this feature if this describes you.