Async Components
Basic Usage
Bundlers like Vite and webpack also support the syntax (and will use it as bundle split points)
import { defineAsyncComponent } from 'vue'
const AsyncComp = defineAsyncComponent(() =>
import('./components/MyComponent.vue')
)