From 656394e9cb6089a9c832d299ac160e4bf93416a8 Mon Sep 17 00:00:00 2001 From: Omereshone Kelvin Oghenerhoro Date: Fri, 11 Jan 2019 03:15:40 +0100 Subject: [PATCH] corrected a typo on vue component guide introduction paragraph (#26872) --- guide/english/vue/components/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/vue/components/index.md b/guide/english/vue/components/index.md index 1f70117d21..726970d3e9 100644 --- a/guide/english/vue/components/index.md +++ b/guide/english/vue/components/index.md @@ -5,7 +5,7 @@ title: Components ## Components A classic problem that web developers face when working is HTML duplication, not -in a simple example such as a list, but sometimes all you want is a "import" to +in a simple example such as a list, but sometimes all you want is an "import" to be able to use the same code in several different places. Well, Vue.js gives you this feature with Components.