Performance: Bundle analysis and tree shaking
HIGH IMPACT
This concept affects the page load speed by reducing the JavaScript bundle size and improving initial download and parse time.
import { VBtn, VCard } from 'vuetify/components'; export default { components: { VBtn, VCard } };
import * as Vuetify from 'vuetify'; export default { components: { ...Vuetify } };
| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Import full library | N/A | N/A | High due to large JS execution | [X] Bad |
| Import only used components | N/A | N/A | Low due to smaller JS execution | [OK] Good |