From: NiceHwang Date: Fri, 22 Jul 2022 07:23:40 +0000 (+0900) Subject: docs: Router-Example typo fix. (#1481) X-Git-Tag: v4.1.3~7 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=de65a3f9e44d7e261c8081bd4304a3904b45ba67;p=thirdparty%2Fvuejs%2Frouter.git docs: Router-Example typo fix. (#1481) Docs-API: Links with typos. `(#addroute-2)` → `(#addroute)` Router-Ex: Works fine, but typo in alpha value in css color. `rgb` → `rgba` --- diff --git a/packages/docs/api/index.md b/packages/docs/api/index.md index 08f506dc..2331a520 100644 --- a/packages/docs/api/index.md +++ b/packages/docs/api/index.md @@ -788,7 +788,7 @@ stringifyQuery?: ( ## RouteRecordRaw -Route record that can be provided by the user when adding routes via the [`routes` option](#routeroptions) or via [`router.addRoute()`](#addroute-2). There are three different kind of route records: +Route record that can be provided by the user when adding routes via the [`routes` option](#routeroptions) or via [`router.addRoute()`](#addroute). There are three different kind of route records: - Single views records: have a `component` option - Multiple views records ([named views](../guide/essentials/named-views.md)): have a `components` option diff --git a/packages/router/e2e/modal/index.html b/packages/router/e2e/modal/index.html index fe0bfeff..7e443a4d 100644 --- a/packages/router/e2e/modal/index.html +++ b/packages/router/e2e/modal/index.html @@ -16,7 +16,7 @@ border: none; margin: 0; padding: 0; - background-color: rgb(0, 0, 0, 0.5); + background-color: rgba(0, 0, 0, 0.5); display: flex; align-items: center; justify-content: center;