Vue Guideline: Routing — Lazy load route components. Description: Code splitting for routes. Do: () => import() for components. Don't: Static imports for all routes. Good Example: component: () => import('./Page.vue'). Bad Example: component: Page. Severity: Medium. Docs: https://router.vuejs.org/guide/advanced/lazy-loading.html.