Async components let you load a component's code only when it's actually needed, splitting it into a separate bundle (chunk) that's fetched on demand. This reduces the initial JavaScript the user downloads.
Defining an async component
{ defineAsyncComponent } ;
= (
()
);
