diff --git a/src/guide/scaling-up/routing.md b/src/guide/scaling-up/routing.md index 4cc26f6e83..62faa34327 100644 --- a/src/guide/scaling-up/routing.md +++ b/src/guide/scaling-up/routing.md @@ -23,7 +23,7 @@ Vue is well-suited for building SPAs. For most SPAs, it's recommended to use the If you only need very simple routing and do not wish to involve a full-featured router library, you can do so with [Dynamic Components](/guide/essentials/component-basics#dynamic-components) and update the current component state by listening to browser [`hashchange` events](https://developer.mozilla.org/en-US/docs/Web/API/Window/hashchange_event) or using the [History API](https://developer.mozilla.org/en-US/docs/Web/API/History). -Here's a bare-bone example: +Here's a bare-bones example: