From c5a33f21d6a653f2ff6e20fb41503f094a6fc341 Mon Sep 17 00:00:00 2001 From: Paulius-U Date: Thu, 28 Aug 2025 21:16:16 +0300 Subject: [PATCH] Added sizes and colors --- src/App.vue | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/App.vue b/src/App.vue index e59b60a..86609db 100644 --- a/src/App.vue +++ b/src/App.vue @@ -6,6 +6,11 @@ const product = ref('Socks') const image = ref(socksGreenImage) const inStock = true const details = ref(['50% cotton', '30% wool', '20% polyester']) +const variants = ref([ + { id: 2234, color: 'green'}, + { id: 2234, color: 'blue'} +]) +const sizes = ref (['39', '40', '41', '42', '43', '44', '45'])