From 893c47ac172cf39eb2c5e112cc207ec1a3f75289 Mon Sep 17 00:00:00 2001 From: hotdogc1017 Date: Fri, 28 Feb 2025 13:25:22 +0800 Subject: [PATCH 1/2] Update performance.md --- src/guide/best-practices/performance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/best-practices/performance.md b/src/guide/best-practices/performance.md index b9015f0b6..9262b5fc9 100644 --- a/src/guide/best-practices/performance.md +++ b/src/guide/best-practices/performance.md @@ -10,7 +10,7 @@ Vue 在大多数常见场景下性能都是很优秀的,通常不需要手动 首先,让我们区分一下 web 应用性能的两个主要方面: -- **页面加载性能**:首次访问时,应用展示出内容与达到可交互状态的速度。这通常会用 Google 所定义的一系列 [Web 指标](https://web.dev/vitals/#core-web-vitals) (Web Vitals) 来进行衡量,如[最大内容绘制](https://web.dev/lcp/) (Largest Contentful Paint,缩写为 LCP) 和[首次输入延迟](https://web.dev/fid/) (First Input Delay,缩写为 FID)。 +- **页面加载性能**:首次访问时,应用展示出内容与达到可交互状态的速度。这通常会用 Google 所定义的一系列 [Web 指标](https://web.dev/vitals/#core-web-vitals) (Web Vitals) 来进行衡量,如[最大内容绘制](https://web.dev/lcp/) (Largest Contentful Paint,缩写为 LCP) 和[交互至下一次绘制](https://web.dev/articles/inp)。 - **更新性能**:应用响应用户输入更新的速度。比如当用户在搜索框中输入时结果列表的更新速度,或者用户在一个单页面应用 (SPA) 中点击链接跳转页面时的切换速度。 From 2f69359f7433e6cc31c46db84e715ca72baa4aae Mon Sep 17 00:00:00 2001 From: hotdogc1017 Date: Sat, 1 Mar 2025 17:56:48 +0800 Subject: [PATCH 2/2] Update src/guide/best-practices/performance.md Co-authored-by: Godpu <908662421@qq.com> --- src/guide/best-practices/performance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/best-practices/performance.md b/src/guide/best-practices/performance.md index 9262b5fc9..ddf106274 100644 --- a/src/guide/best-practices/performance.md +++ b/src/guide/best-practices/performance.md @@ -10,7 +10,7 @@ Vue 在大多数常见场景下性能都是很优秀的,通常不需要手动 首先,让我们区分一下 web 应用性能的两个主要方面: -- **页面加载性能**:首次访问时,应用展示出内容与达到可交互状态的速度。这通常会用 Google 所定义的一系列 [Web 指标](https://web.dev/vitals/#core-web-vitals) (Web Vitals) 来进行衡量,如[最大内容绘制](https://web.dev/lcp/) (Largest Contentful Paint,缩写为 LCP) 和[交互至下一次绘制](https://web.dev/articles/inp)。 +- **页面加载性能**:首次访问时,应用展示出内容与达到可交互状态的速度。这通常会用 Google 所定义的一系列 [Web 指标](https://web.dev/vitals/#core-web-vitals) (Web Vitals) 来进行衡量,如[最大内容绘制](https://web.dev/lcp/) (Largest Contentful Paint,缩写为 LCP) 和[交互至下一次绘制,即 INP](https://web.dev/articles/inp)。 - **更新性能**:应用响应用户输入更新的速度。比如当用户在搜索框中输入时结果列表的更新速度,或者用户在一个单页面应用 (SPA) 中点击链接跳转页面时的切换速度。