diff --git a/index.html b/index.html index e33445114..c51ca304b 100644 --- a/index.html +++ b/index.html @@ -6,7 +6,7 @@ - +
@@ -19,6 +19,15 @@

{{ product }}

+

On Sale!

+

In Stock

+

+ Almost sold out + ({{ inventory }} items + {{ inventory}} item + left!) +

+

Out of Stock

diff --git a/main.js b/main.js index c0cd51b46..f020568b7 100644 --- a/main.js +++ b/main.js @@ -2,7 +2,10 @@ const app = Vue.createApp({ data() { return { product: 'Socks', - image: './assets/images/socks_blue.jpg' + image: './assets/images/socks_blue.jpg', + // inStock: true, + inventory: 1, + onSale: true } } -}) +});