Vue 3 Single File Components
Plans from $25/month

This lesson is for members. Join us?

Subscribe now to get instant access to this course, plus a full library of Vue.js courses tailored to the plan you choose.

Loading Components Asyncronously

In this lesson, we'll learn how to lazy-load Vue.js 3 components to improve performance.

By lazy-loading our single file components, we reduce the size of the JavaScript bundle our users have to download before they can interact with our applications.

We'll use a technique called Code Splitting, which is a common technique that has become the defacto golden standard.