From ade7e961a2205965a1364b6f9992815a74bf4aca Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Tue, 9 Aug 2022 21:19:35 +0400 Subject: [PATCH] Add content for computed properties --- .../100-fundamental-topics/111-computed-properties.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 +