Category

List of articles for category: "Performance"
Vue Tip: Cache Component Instances With the KeepAlive Component Image

Vue Tip: Cache Component Instances With the KeepAlive Component

KeepAlive is a built-in Vue component that allows you to conditionally cache component instances when dynamically switching between multiple components.
Vue Tip: Measure Performance Image

Vue Tip: Measure Performance

Learn some tools to measure the performance of your Vue application.
Vue Tip: Optimize Performance Using shallowRef Image

Vue Tip: Optimize Performance Using shallowRef

shallowRef() is typically used for performance optimizations of large data structures, or integration with external state management systems.
Vue Tip: Speed Up Initial Load Using Async Components Image

Vue Tip: Speed Up Initial Load Using Async Components

Using async components is a great way to speed up the initial load time of your app.
Vue Tip: Use Eager Computed Without Lazy Evaluation Image

Vue Tip: Use Eager Computed Without Lazy Evaluation

Computed properties are evaluated lazily which means they are only evaluated when they are accessed.