docs: remove a resolved issue from view transition docs (#28091)

This commit is contained in:
Thomas 2024-07-11 08:16:19 +02:00 committed by Daniel Roe
parent 6d7502f8e1
commit 3412f87276
No known key found for this signature in database
GPG Key ID: 3714AB03996F442B

View File

@ -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: <https://github.com/vuejs/core/issues/5513>. 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 `<Suspense>` resolves, but in the interim you may want to consider carefully whether to adopt this feature if this describes you.