You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* docs(performance): INP replacement of FIP
We can see a warning on https://web.dev/articles/fid telling that FIP as reach EOL in favor of INP.
I have added an info box because the change could be subtle without it but tell me if you see a better way of showing the change.
* fix: missing square bracket
* fix: typo
* Update src/guide/best-practices/performance.md
---------
Co-authored-by: Natalia Tepluhina <tarya.se@gmail.com>
Copy file name to clipboardExpand all lines: src/guide/best-practices/performance.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Vue is designed to be performant for most common use cases without much need for
10
10
11
11
First, let's discuss the two major aspects of web performance:
12
12
13
-
-**Page Load Performance**: how fast the application shows content and becomes interactive on the initial visit. This is usually measured using web vital metrics like [Largest Contentful Paint (LCP)](https://web.dev/lcp/) and [First Input Delay (FID)](https://web.dev/fid/).
13
+
-**Page Load Performance**: how fast the application shows content and becomes interactive on the initial visit. This is usually measured using web vital metrics like [Largest Contentful Paint (LCP)](https://web.dev/lcp/) and [Interaction to Next Paint](https://web.dev/articles/inp).
14
14
15
15
-**Update Performance**: how fast the application updates in response to user input. For example, how fast a list updates when the user types in a search box, or how fast the page switches when the user clicks a navigation link in a Single-Page Application (SPA).
0 commit comments