From fe4bddc0b1780eadead8303a7a78fd387f5d4575 Mon Sep 17 00:00:00 2001 From: scientist27 <63222497+scientist27@users.noreply.github.com> Date: Sun, 12 Dec 2021 15:49:33 +0530 Subject: [PATCH 1/5] Fixed grammatical error in theme-data.js In the Flatlogic description, the phrase "how real applications is built" is grammatically incorrect since "applications" is a plural noun but "is" refers to a singular noun. I changed it to "how real applications are built." In the PrimeVue description, the phrase "look&feel" (which lacked spaces between the words and punctuation) has been changed to "look & feel". --- src/.vuepress/components/community/themes/theme-data.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/.vuepress/components/community/themes/theme-data.js b/src/.vuepress/components/community/themes/theme-data.js index 4604a5ea2e..81fa80feef 100644 --- a/src/.vuepress/components/community/themes/theme-data.js +++ b/src/.vuepress/components/community/themes/theme-data.js @@ -127,7 +127,7 @@ export default [ }, { name: 'PrimeVue', - description: `The open-source UI component library [PrimeVue](https://www.primefaces.org/primevue/#/?af_id=4218) offers over 80 flexible components to build your apps with! They have a ton of different component themes and Vue-CLI application templates available to get the look&feel that suits you best.`, + description: `The open-source UI component library [PrimeVue](https://www.primefaces.org/primevue/#/?af_id=4218) offers over 80 flexible components to build your apps with! They have a ton of different component themes and Vue-CLI application templates available to get the look & feel that suits you best.`, seeMoreUrl: 'https://www.primefaces.org/primevue/#/?af_id=4218', products: [ { @@ -218,7 +218,7 @@ export default [ }, { name: 'Flatlogic', - description: `Check the admin dashboards templates built by our partners from [Flatlogic](https://flatlogic.com/templates?ref=x-fdkuTAVW). With these themes you can see how real applications is built. Additionally these templates will help you to start a new application and save you time and money.`, + description: `Check the admin dashboard templates built by our partners from [Flatlogic](https://flatlogic.com/templates?ref=x-fdkuTAVW). With these themes you can see how real applications are built. Additionally, these templates will help you to start a new application and save you time and money.`, seeMoreUrl: 'https://flatlogic.com/templates?ref=x-fdkuTAVW', products: [ { From 031c2c8e4050caa45289e64b90ac33a69eef36e2 Mon Sep 17 00:00:00 2001 From: scientist27 <63222497+scientist27@users.noreply.github.com> Date: Sun, 12 Dec 2021 15:53:48 +0530 Subject: [PATCH 2/5] Update theme-data.js In the Flatlogic description, "Check the admin dashboard templates" has been changed to "Check out the admin dashboard templates." --- src/.vuepress/components/community/themes/theme-data.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/.vuepress/components/community/themes/theme-data.js b/src/.vuepress/components/community/themes/theme-data.js index 81fa80feef..7e0d9ffc1b 100644 --- a/src/.vuepress/components/community/themes/theme-data.js +++ b/src/.vuepress/components/community/themes/theme-data.js @@ -218,7 +218,7 @@ export default [ }, { name: 'Flatlogic', - description: `Check the admin dashboard templates built by our partners from [Flatlogic](https://flatlogic.com/templates?ref=x-fdkuTAVW). With these themes you can see how real applications are built. Additionally, these templates will help you to start a new application and save you time and money.`, + description: `Check out the admin dashboard templates built by our partners from [Flatlogic](https://flatlogic.com/templates?ref=x-fdkuTAVW). With these themes you can see how real applications are built. Additionally, these templates will help you to start a new application and save you time and money.`, seeMoreUrl: 'https://flatlogic.com/templates?ref=x-fdkuTAVW', products: [ { From e41323b46ee895053aee0c532f5ac47670745d5a Mon Sep 17 00:00:00 2001 From: scientist27 <63222497+scientist27@users.noreply.github.com> Date: Thu, 23 Dec 2021 14:48:30 +0530 Subject: [PATCH 3/5] Fix grammar and introduce the component method --- src/guide/introduction.md | 20 +++++++++++++++++--- 1 file changed, 17 insertions(+), 3 deletions(-) diff --git a/src/guide/introduction.md b/src/guide/introduction.md index 93cef89efb..f40dc9105b 100644 --- a/src/guide/introduction.md +++ b/src/guide/introduction.md @@ -52,7 +52,7 @@ const Counter = { Vue.createApp(Counter).mount('#counter') ``` -We have already created our very first Vue app! This looks pretty similar to rendering a string template, but Vue has done a lot of work under the hood. The data and the DOM are now linked, and everything is now **reactive**. How do we know? Take a look at the example below where `counter` property increments every second and you will see how rendered DOM changes: +We have already created our very first Vue app! This looks pretty similar to rendering a string template, but Vue has done a lot of work under the hood. The data and the DOM are now linked, and everything is now **reactive**. How do we know? Take a look at the example below where the `counter` property increments every second and you will see how the rendered DOM changes: ```js{8-10} const Counter = { @@ -158,7 +158,7 @@ Vue.createApp(TwoWayBinding).mount('#two-way-binding') ## Conditionals and Loops -It's easy to toggle the presence of an element, too: +It's easy to toggle the presence of an element too: ```html