From 1e8aa0edf1a1fe8aeee4c5f3b940fe86ddfe6da1 Mon Sep 17 00:00:00 2001 From: The Jared Wilcurt Date: Tue, 6 May 2025 17:08:40 -0400 Subject: [PATCH] Update options-api@PPUU3Rb73aCpT4zcyvlJE.md --- .../roadmaps/vue/content/options-api@PPUU3Rb73aCpT4zcyvlJE.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/vue/content/options-api@PPUU3Rb73aCpT4zcyvlJE.md b/src/data/roadmaps/vue/content/options-api@PPUU3Rb73aCpT4zcyvlJE.md index 85cc6c182..ab5bf98cd 100644 --- a/src/data/roadmaps/vue/content/options-api@PPUU3Rb73aCpT4zcyvlJE.md +++ b/src/data/roadmaps/vue/content/options-api@PPUU3Rb73aCpT4zcyvlJE.md @@ -1,6 +1,6 @@ # Options API -Vue offers many approaches for how to write components, including the Options API. It is the only API that is available in all versions of Vue. It's primary focus is on providing a consistent and clean organized aproach to writing component logic. Each part of a component's logic is given a dedicated section (data, methods, computed, props, life-cycle hooks, etc). By putting the logic in the correct section it has access to those framework features automatically. With the official Vue ESLint plugin the order of the sections can be enforced across all components allowing developers to predicatably locate any part of the component, even if they've never looked at the file before. +Vue offers many approaches for how to write components, including the Options API. It is the only API that is available in all versions of Vue. Its primary focus is on providing a consistent, clean, and organized aproach to writing component logic. Each part of a component's logic is given a dedicated section (data, methods, computed, props, life-cycle hooks, etc). By putting the logic in the correct section it has access to the features of the framework automatically. With the official Vue ESLint plugin the order of these sections can be enforced across all components allowing developers to predicatably locate any part of the component, even if they've never looked at the file before. Visit the following resources to learn more: