Skip to content

Commit 0e8140f

Browse files
committed
outline for performance guide
1 parent 1ae1bec commit 0e8140f

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed
Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,36 @@
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`

src/guide/best-practices/production-deployment.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@
66

77
## With Build Tools
88

9-
## Tracking Runtime Errors
9+
## Tracking Runtime Errors

0 commit comments

Comments
 (0)