From 32b399952450a79a199813f58c980625f8d840fb Mon Sep 17 00:00:00 2001 From: Retne Date: Tue, 29 Sep 2020 18:07:47 +0100 Subject: [PATCH] Grammar change ("several hundred") Quite minor grammar change ("several hundreds of" -> "several hundred") but for me it really took the flow away from my reading of the article. Looking this up it appears the consensous is the latter is better hence the PR! --- src/guide/composition-api-introduction.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/guide/composition-api-introduction.md b/src/guide/composition-api-introduction.md index 2493e77550..ffae321d2f 100644 --- a/src/guide/composition-api-introduction.md +++ b/src/guide/composition-api-introduction.md @@ -8,7 +8,7 @@ Reaching this far in the documentation, you should already be familiar with both Watch a free video about the Composition API on Vue Mastery -Creating Vue components allows us to extract repeatable parts of the interface coupled with its functionality into reusable pieces of code. This alone can get our application pretty far in terms of maintainability and flexibility. However, our collective experience has proved that this alone might not be enough, especially when your application is getting really big – think several hundreds of components. When dealing with such large applications, sharing and reusing code becomes especially important. +Creating Vue components allows us to extract repeatable parts of the interface coupled with its functionality into reusable pieces of code. This alone can get our application pretty far in terms of maintainability and flexibility. However, our collective experience has proved that this alone might not be enough, especially when your application is getting really big – think several hundred components. When dealing with such large applications, sharing and reusing code becomes especially important. Let’s imagine that in our app, we have a view to show a list of repositories of a certain user. On top of that, we want to apply search and filter capabilities. Our component handling this view could look like this: