Skip to content

Commit 0572c9b

Browse files
committed
update intro note
1 parent fbe4f7a commit 0572c9b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

en/README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,11 @@
55
> - vue-router >= 2.5.0
66
> - vue-loader >= 12.0.0 & vue-style-loader >= 3.0.0
77
8+
> If you have previously used Vue 2.2 with SSR, you will notice that the recommended code structure is now [a bit different](./structure.md) (with the new [runInNewContext](./api.md#runinnewcontext) option set to `false`). Your existing app should continue to work, but it's recommended to migrate to the new recommendations.
9+
810
## What is Server-Side Rendering (SSR)?
911

10-
Vue.js is a framework for building client-side applications. By default, Vue components produce and manipulate DOM in the browser as output. However, it is also possible to render the same components into HTML strings on the server, send them directly to the browser, and finally "hydrate" the static markup into a fully interactive app on the client.
12+
Vue.js is a framework for building client-side applications. By default, Vue components produce and manipulate DOM in the browser as output. However, it is also possible to render the same components into HTML strings on the server, send them directly to the browser, and finally "hydrate" the static markup into a fully interactive app on the client.
1113

1214
A server-rendered Vue.js app can also be considered "isomorphic" or "universal", in the sense that the majority of your app's code runs on both the server **and** the client.
1315

0 commit comments

Comments
 (0)