diff --git a/content/roadmaps/105-vue/content/100-fundamental-topics/111-computed-properties.md b/content/roadmaps/105-vue/content/100-fundamental-topics/111-computed-properties.md index a06f1436e..d34ddc197 100644 --- a/content/roadmaps/105-vue/content/100-fundamental-topics/111-computed-properties.md +++ b/content/roadmaps/105-vue/content/100-fundamental-topics/111-computed-properties.md @@ -1 +1,8 @@ -# Computed properties \ No newline at end of file +# Computed Properties + +In-template expressions are very convenient, but they are meant for simple operations. Putting too much logic in your templates can make them bloated and hard to maintain. Computed properties allow us to simplify the complex logic that includes reactive data. + +Free Content + +Computed Properties +