From 79e19c03f813b010f6a036f5242808fd99ca1618 Mon Sep 17 00:00:00 2001 From: Wang Ningning <2453549420@qq.com> Date: Wed, 9 Aug 2023 15:33:30 +0800 Subject: [PATCH] Please correct example code The example on StackBlitz shows div instead of button --- src/guide/scaling-up/ssr.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/guide/scaling-up/ssr.md b/src/guide/scaling-up/ssr.md index 6bb502b6df..78216a0630 100644 --- a/src/guide/scaling-up/ssr.md +++ b/src/guide/scaling-up/ssr.md @@ -199,7 +199,8 @@ In addition, in order to load the client files in the browser, we also need to: 2. Load the client entry by adding `` to the HTML shell. 3. Support usage like `import * from 'vue'` in the browser by adding an [Import Map](https://github.com/WICG/import-maps) to the HTML shell. -[Try the completed example on StackBlitz](https://stackblitz.com/fork/vue-ssr-example?file=index.js). The button is now interactive! +[Try the completed example on StackBlitz](https://stackblitz.com/fork/vue-ssr-example?file=index.js). The button is now interactive! (**the example on StackBlitz shows div instead of button, please correct it**) + ## Higher Level Solutions {#higher-level-solutions}