From 70f08f3862d56aa6fb24492a0bdeadf7c50d7a47 Mon Sep 17 00:00:00 2001 From: Paul Cochrane Date: Sat, 9 May 2026 17:40:33 +0200 Subject: [PATCH] Fix usage of "bare bones" idiom on routing docs page While reading the routing docs, I noticed that the idiomatic phrase "bare bones" was in the singular rather than in the plural. This change corrects the issue. See also https://grammarist.com/idiom/bare-bones/ for more info, if necessary. --- src/guide/scaling-up/routing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: