From 1a322bc5204c5b44f35205697fe634f344b40c56 Mon Sep 17 00:00:00 2001 From: Andy Date: Fri, 8 Nov 2024 13:13:40 -0500 Subject: [PATCH 01/16] key --- src/App.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 5328789..21e5d36 100644 --- a/src/App.vue +++ b/src/App.vue @@ -28,7 +28,7 @@ const variants = ref([ -
{{ variant.color }}
+
{{ variant.color }}
From 4b9c0e3c9bd3bc7e14f4d22eb92b2c1f10ab9b05 Mon Sep 17 00:00:00 2001 From: Andy Date: Mon, 21 Apr 2025 15:39:45 -0400 Subject: [PATCH 02/16] cart --- src/App.vue | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/App.vue b/src/App.vue index 21e5d36..63a7d25 100644 --- a/src/App.vue +++ b/src/App.vue @@ -12,10 +12,13 @@ const variants = ref([ { id: 2234, color: 'green' }, { id: 2235, color: 'blue' }, ]) + +const cart = ref(0)