diff --git a/docs/content/2.guide/1.concepts/2.vuejs-development.md b/docs/content/2.guide/1.concepts/2.vuejs-development.md index 0a20be32c..818b69dd3 100644 --- a/docs/content/2.guide/1.concepts/2.vuejs-development.md +++ b/docs/content/2.guide/1.concepts/2.vuejs-development.md @@ -68,7 +68,7 @@ This way, a minimal Vue 3 application can be reduced to 12 kb gzipped. ### Composition API -The only way to provide data and logic to components in Vue 2 was through the Options API, allowing to return data and methods to a template with pre-defined properties like `data` and `methods`: +The only way to provide data and logic to components in Vue 2 was through the Options API, which allows you to return data and methods to a template with pre-defined properties like `data` and `methods`: ```vue