@vuejs In the world of modern web development, delivering seamless user experiences is of utmost importance. Asynchronous components, which load data or resources dynamically, play a crucial role in achieving this goal.
@vuejs Vue 3 introduces an interesting feature called Suspense to effortlessly handle asynchronous components. You can use it to show a loading state while all async dependencies in the nested component tree are being resolved.
@vuejs โ ๏ธ <Suspense> is an experimental feature. It is not guaranteed to reach stable status and the API may change before it does.
For this article, let's use the following component hierarchy for demonstration purposes:
@vuejs We have a Dashboard component that includes two child components:
- Profile: This component is loaded asynchronously
- FetchComponent: This component fetches data using async/await within <script setup>
@vuejs Each of the child components has its loading state, they are visible if the component is loaded:
@vuejs As you can imagine this can harm the user experience if you see multiple loading spinners on the page and content displayed at different times.
Let's take a look at how <Suspense> is trying to solve that problem.
@vuejs The <Suspense> component enables us to display top-level loading & error states while waiting for nested async dependencies to be resolved:
@vuejs <Suspense> has two slots: #default and #fallback. Both slots only allow for one immediate child node.
Our demo application now behaves this way using <Suspense>:
@vuejs The <Suspense> component has two states: pending and resolve.
When <Suspense> is first rendered, it will display its default slot content in memory. If any asynchronous dependencies are encountered, it will transition to a pending state.
@vuejs While in the pending state, the fallback content will be shown. Once all the encountered asynchronous dependencies are resolved, <Suspense> enters a resolved state and displays the resolved default slot content.
@vuejs If no async dependencies were encountered during the initial render, <Suspense> will directly go into a resolved state.
@vuejs <Suspense> currently does not provide error handling via the component itself. However, you can use the errorCaptured option or the onErrorCaptured() hook to capture and handle async errors in the parent component of <Suspense>.
โข โข โข
Missing some Tweet in this thread? You can try to
force a refresh