From ed9332d98f3331297ed6d3b28588f542c85b302f Mon Sep 17 00:00:00 2001 From: mayowa-aji Date: Tue, 5 Dec 2023 18:16:19 -0500 Subject: [PATCH 1/2] dec5 --- index.html | 26 +++++++++++++++++++++++++- playground.html | 47 ++++++++++++++++++++++++++++++++++++++++++++++- 2 files changed, 71 insertions(+), 2 deletions(-) diff --git a/index.html b/index.html index ee86e94f..703712a1 100644 --- a/index.html +++ b/index.html @@ -6,5 +6,29 @@ Document - + +
+

{{ message}}

+ +
+ + + + + diff --git a/playground.html b/playground.html index 1fae24a7..1981be5a 100644 --- a/playground.html +++ b/playground.html @@ -6,5 +6,50 @@ Playground — Complete Intro to Vue 3 - + +

Hello Frontend Masters

+
+
+

Counter

+

{{count}}

+ +
+ + +
+ +
+

Even: {{message.toUpperCase()}}

+

Odd: {{message}}

+ + +
+ + + + From 182b4d4f5e6f44478961b8daf43197111bf7e038 Mon Sep 17 00:00:00 2001 From: mayowa-aji Date: Wed, 20 Dec 2023 15:23:09 -0500 Subject: [PATCH 2/2] solution --- playground.html | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/playground.html b/playground.html index 1981be5a..a5f02f3c 100644 --- a/playground.html +++ b/playground.html @@ -15,8 +15,7 @@

Counter

- +

@@ -43,10 +42,10 @@

Counter

}, methods:{ incrementCount(){ - this.count+=this.incrementAmount + this.count += this.incrementAmount } - } + }) app.mount('#app')