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.