diff --git a/docs/markdown/reference/router-links/README.md b/docs/markdown/reference/router-links/README.md index 88e7a91de36..9e9d70e3e94 100644 --- a/docs/markdown/reference/router-links/README.md +++ b/docs/markdown/reference/router-links/README.md @@ -174,8 +174,8 @@ the viewport, Nuxt.js will automatically prefetch the code splitted page. Settin Prefetching support requires [IntersectionObserver](https://developer.mozilla.org/en-US/docs/Web/API/Intersection_Observer_API) -to be supported (see [CanIUse](https://caniuse.com/#feat=intersectionobserver)). For browsers that -do not support IntersectionObserver, you can use the following conditional polyfill in +to be supported (see [Can I use](https://caniuse.com/intersectionobserver)). For browsers that do +not support IntersectionObserver, you can use the following conditional polyfill in `nuxt.config.js`: ```js diff --git a/src/components/avatar/_avatar.scss b/src/components/avatar/_avatar.scss index 47e4befd32e..95550d14536 100644 --- a/src/components/avatar/_avatar.scss +++ b/src/components/avatar/_avatar.scss @@ -85,7 +85,7 @@ max-height: auto; border-radius: inherit; // This is not supported in IE11 and Edge <16 - // https://caniuse.com/#feat=object-fit + // https://caniuse.com/object-fit object-fit: cover; } diff --git a/src/components/form-file/README.md b/src/components/form-file/README.md index 235afc03335..01f4d8e66db 100644 --- a/src/components/form-file/README.md +++ b/src/components/form-file/README.md @@ -59,7 +59,7 @@ files are selected the return value will be an array of JavaScript CAUTION: Directory mode is a non-standard feature. While being supported by all modern browsers, it should not be relied on for production. Read more on MDN - and Can I use. + and Can I use.

diff --git a/src/components/form-input/README.md b/src/components/form-input/README.md index 6de0b3faa50..353e3f21f83 100644 --- a/src/components/form-input/README.md +++ b/src/components/form-input/README.md @@ -75,7 +75,7 @@ rendered and a console warning will be issued. **Caveats with input types:** - Not all browsers support all input types, nor do some types render in the same format across - browser types/versions. Refer to [caniuse.com](https://caniuse.com/#search=input). + browser types/versions. Refer to [Can I use](https://caniuse.com/?search=input). - Browsers that do not support a particular type will fall back to a `text` input type (even though the rendered `type` attribute markup shows the requested type). - No testing is performed to see if the requested input type is supported by the browser. @@ -474,7 +474,7 @@ from an array of options. - Datalists **cannot** be applied to input fields with type `password`, `range` or `color`. - Not all browsers fully support `` and implementations can be buggy. It is recommended that datalists be treated as an enhancement and not be relied upon at this time. Check - [Can I Use](https://caniuse.com/#feat=datalist) for full support details on all browsers. + [Can I use](https://caniuse.com/datalist) for full support details on all browsers. ## `v-model` modifiers diff --git a/src/components/form-textarea/README.md b/src/components/form-textarea/README.md index aa0e776fde0..98969aba4a2 100644 --- a/src/components/form-textarea/README.md +++ b/src/components/form-textarea/README.md @@ -172,7 +172,7 @@ disabled in auto-height mode. Auto-height works by computing the resulting height via CSS queries, hence the input has to be in document (DOM) and visible (not hidden via `display: none`). Initial height is computed on mount. If -the browser client supports [`IntersectionObserver`](https://caniuse.com/#feat=intersectionobserver) +the browser client supports [`IntersectionObserver`](https://caniuse.com/intersectionobserver) (either natively or via [a polyfill](/docs#js)), `` will take advantage of this to determine when the textarea becomes visible and will then compute the height. Refer to the [Browser support](/docs#browser) section on the getting started page. diff --git a/src/components/table/README.md b/src/components/table/README.md index 4af66b1ccd8..763eb7ba797 100644 --- a/src/components/table/README.md +++ b/src/components/table/README.md @@ -1966,8 +1966,8 @@ sorts _before_ `z`) or Swedish set `sort-compare-locale="sv"` (in Swedish, `รค` [MDN locales documentation](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument) for details on locale values. - Not all browsers (or Node.js) support the `locale` and `options` with - `String.prototype.localeCompare()`. Refer to [Can I Use](https://caniuse.com/#feat=localecompare) - for browser support. For Node.js, you may need to add in + `String.prototype.localeCompare()`. Refer to [Can I use](https://caniuse.com/localecompare) for + browser support. For Node.js, you may need to add in [Intl support](https://nodejs.org/api/intl.html) for handling locales, other than the default, to prevent [SSR hydration mismatch errors](https://ssr.vuejs.org/guide/hydration.html).