Skip to content

Commit e7d26be

Browse files
committed
progress
1 parent ce5296a commit e7d26be

File tree

6 files changed

+28
-3
lines changed

6 files changed

+28
-3
lines changed

en/SUMMARY.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# vue-server-renderer
22

3-
- [API](api.md)
4-
- [Renderer Options](options.md)
5-
- [Why Use Bundle Renderer?](bundle-renderer.md)
3+
- [Basic Usage](basic.md)
4+
- [Why Use Bundle Renderer?](why-bundle-renderer.md)
65
- [Creating the Server Bundle](server-bundle.md)
76
- [Creating the Client Manifest](client-manifest.md)
87
- [Caching](caching.md)
98
- [Client Side Hydration](hydration.md)
9+
- [API Reference](api.md)

en/basic.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
## rendering a vm
2+
3+
## rendering to stream
4+
5+
## template

en/caching.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
## Component-level Caching
2+
3+
## Page-level Caching

en/options.md

Whitespace-only changes.
File renamed without changes.

en/why-bundle-renderer.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
## Problems with Basic SSR
2+
3+
- webpack
4+
- development and deployment
5+
- source map
6+
- code splitting
7+
8+
## Enter BundleRenderer
9+
10+
- Generates a bundle JSON file by using webpack plugin
11+
- Source map support
12+
- Hot-reload of the bundle
13+
- Works well with route-level code-splitting
14+
- Automatic critical CSS injection with [`vue-style-loader`](https://github.com/vuejs/vue-style-loader)
15+
- Automatic asset injection with [clientManifest](./client-manifest.md)
16+
17+
## The `runInNewContext` Option

0 commit comments

Comments
 (0)