Skip to content

Commit

Permalink
docs(performance): INP replacement of FID (#3150)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>
  • Loading branch information
GeoffreyParrier and NataliaTepluhina authored Jan 21, 2025
1 parent a06db6c commit a0d6271
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/guide/best-practices/performance.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Vue is designed to be performant for most common use cases without much need for

First, let's discuss the two major aspects of web performance:

- **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/).
- **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).

- **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).

Expand Down

0 comments on commit a0d6271

Please sign in to comment.