From 4b1026e41e5911584b3c3518ba3f2aea32066d0f Mon Sep 17 00:00:00 2001 From: Adam Jahr Date: Mon, 20 Jul 2020 23:57:17 -0400 Subject: [PATCH] L5 starting code --- index.html | 5 ----- main.js | 5 +---- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/index.html b/index.html index e8f6205..ac95523 100644 --- a/index.html +++ b/index.html @@ -21,11 +21,6 @@

{{ product }}

In Stock

Out of Stock

- - - diff --git a/main.js b/main.js index 61a0b2e..1725ec2 100644 --- a/main.js +++ b/main.js @@ -4,10 +4,7 @@ const app = Vue.createApp({ product: 'Socks', image: './assets/images/socks_blue.jpg', inStock: true, - details: ['50% cotton', '30% wool', '20% polyester'], - // solution - sizes: ['S', 'M', 'L', 'XL', 'XXL'] - // solution + details: ['50% cotton', '30% wool', '20% polyester'] } } })