From 1929491c66c19d0e81025524ff0563951f513dae Mon Sep 17 00:00:00 2001 From: LBJ Date: Tue, 15 Mar 2022 18:12:55 +0800 Subject: [PATCH 1/4] Update ssr.md --- src/guide/scaling-up/ssr.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/scaling-up/ssr.md b/src/guide/scaling-up/ssr.md index 34369ba414..89e4f48b32 100644 --- a/src/guide/scaling-up/ssr.md +++ b/src/guide/scaling-up/ssr.md @@ -10,7 +10,7 @@ outline: deep 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. -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. +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. ### Why SSR? From 73cdb3b08307f8285e023b93eea5c21960db7995 Mon Sep 17 00:00:00 2001 From: LBJ Date: Mon, 21 Mar 2022 10:14:25 +0800 Subject: [PATCH 2/4] Update composition-api.md --- src/guide/typescript/composition-api.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/guide/typescript/composition-api.md b/src/guide/typescript/composition-api.md index c0f1443cf9..80ff238594 100644 --- a/src/guide/typescript/composition-api.md +++ b/src/guide/typescript/composition-api.md @@ -4,6 +4,8 @@ ## Typing Component Props +### using `