From 7b27e797a82d1d6a57a1f16bf43c43be3effb2cf Mon Sep 17 00:00:00 2001 From: "Sean G. Wright" Date: Sun, 22 Nov 2020 04:35:21 -0500 Subject: [PATCH] docs: typo (#604) Missing quote for RouteLocationRaw definition --- docs/api/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api/index.md b/docs/api/index.md index 117e024b..2ced3c4a 100644 --- a/docs/api/index.md +++ b/docs/api/index.md @@ -924,7 +924,7 @@ A raw location can either be a `string` like `/users/posva#bio` or an object: ```js // these three forms are equivalent -router.push('/users/posva#bio) +router.push('/users/posva#bio') router.push({ path: '/users/posva', hash: '#bio' }) router.push({ name: 'users', params: { username: 'posva' }, hash: '#bio' }) // only change the hash -- 2.47.3