8000 Fix typo in Server-Side Rendering guide by roryokane · Pull Request #434 · vuejs/v2.vuejs.org · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/guide/ssr.md
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ server.listen(5000, function (error) {
})
```

And that's it! Here's [the full application](https://github.com/chrisvfritz/vue-ssr-demo-simple), in case you'd like to clone it and experiment further. Once you have it running locally, you can confirm that server-side rendering really is working by right-clickig on the page and selecting `View Page Source` (or similar). You should see this in the body:
And that's it! Here's [the full application](https://github.com/chrisvfritz/vue-ssr-demo-simple), in case you'd like to clone it and experiment further. Once you have it running locally, you can confirm that server-side rendering really is working by right-clicking on the page and selecting `View Page Source` (or similar). You should see this in the body:

``` html
<div id="app" server-rendered="true">You have been here for 0 seconds&period;</div>
Expand Down
0