Skip to content

Commit

Permalink
docs: minor phrasing updates (#3204)
Browse files Browse the repository at this point in the history
  • Loading branch information
indirectlylit authored Nov 14, 2023
1 parent 237ad85 commit 2d96200
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/guide/markdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ This allows you to link to the heading as `#my-anchor` instead of the default `#

## Links

Both internal and external links gets special treatments.
Both internal and external links get special treatment.

### Internal Links

Expand Down
2 changes: 1 addition & 1 deletion docs/guide/ssr-compat.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ outline: deep

VitePress pre-renders the app in Node.js during the production build, using Vue's Server-Side Rendering (SSR) capabilities. This means all custom code in theme components are subject to SSR Compatibility.

The [SSR section in official Vue docs](https://vuejs.org/guide/scaling-up/ssr.html) provides more context on what is SSR, the relationship between SSR / SSG, and common notes on writing SSR-friendly code. The rule of thumb is to only access browser / DOM APIs in `beforeMount` or `mounted` hooks of Vue components.
The [SSR section in official Vue docs](https://vuejs.org/guide/scaling-up/ssr.html) provides more context on what SSR is, the relationship between SSR / SSG, and common notes on writing SSR-friendly code. The rule of thumb is to only access browser / DOM APIs in `beforeMount` or `mounted` hooks of Vue components.

## `<ClientOnly>`

Expand Down

0 comments on commit 2d96200

Please sign in to comment.