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'])