File tree Expand file tree Collapse file tree 2 files changed +37
-2
lines changed Expand file tree Collapse file tree 2 files changed +37
-2
lines changed Original file line number Diff line number Diff line change 1
- # Performance Optimization
1
+ ---
2
+ aside : deep
3
+ ---
4
+
5
+ # Performance Guide
6
+
7
+ ## Page Load Performance
8
+
9
+ ### Bundle Size and Tree-shaking
10
+
11
+ ### Full Build vs. Runtime-only build
12
+
13
+ ### Code Splitting
14
+
15
+ ### Big List Virtualization
16
+
17
+ ### Avoid Unnecessary Component Abstractions
18
+
19
+ ## Update Performance
20
+
21
+ ### Reducing Reactivity Overhead
22
+
23
+ - Use shallow APIs to hold immutable data
24
+
25
+ ### Component and Reactivity Boundary
26
+
27
+ - Identify unnecessary updates with ` renderTriggered `
28
+
29
+ ### Provide / Inject
30
+
31
+ - Avoid props drilling
32
+ - Avoid duplicated computed properties
33
+
34
+ ### ` v-once `
35
+
36
+ ### ` v-memo `
Original file line number Diff line number Diff line change 6
6
7
7
## With Build Tools
8
8
9
- ## Tracking Runtime Errors
9
+ ## Tracking Runtime Errors
You can’t perform that action at this time.
0 commit comments