From d86ce6bd6d7c2a1e42ac39e9370e9062d43858fe Mon Sep 17 00:00:00 2001 From: Jonathan Date: Fri, 21 Jan 2022 12:13:46 +0100 Subject: [PATCH] 5kb is now 6kb --- src/guide/single-file-component.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/single-file-component.md b/src/guide/single-file-component.md index 55c7b8a07a..595fc444a4 100644 --- a/src/guide/single-file-component.md +++ b/src/guide/single-file-component.md @@ -75,7 +75,7 @@ SFC is a defining feature of Vue as a framework, and is the recommended approach - Static Site Generation (SSG) - Any non-trivial frontends where a build step can be justified for better development experience (DX). -That said, we do realize there are scenarios where SFCs can feel like overkill. This is why Vue can still be used via plain JavaScript without a build step. If you are just looking for enhancing largely static HTML with light interactions, you can also check out [petite-vue](https://github.com/vuejs/petite-vue), a 5kb subset of Vue optimized for progressive enhancement. +That said, we do realize there are scenarios where SFCs can feel like overkill. This is why Vue can still be used via plain JavaScript without a build step. If you are just looking for enhancing largely static HTML with light interactions, you can also check out [petite-vue](https://github.com/vuejs/petite-vue), a 6kb subset of Vue optimized for progressive enhancement. ## What About Separation of Concerns?