From: Sean G. Wright Date: Sun, 22 Nov 2020 09:35:21 +0000 (-0500) Subject: docs: typo (#604) X-Git-Tag: v4.0.0-rc.6~18 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b27e797a82d1d6a57a1f16bf43c43be3effb2cf;p=thirdparty%2Fvuejs%2Frouter.git docs: typo (#604) Missing quote for RouteLocationRaw definition --- 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