diff --git a/index.html b/index.html index 56c112638..1cc4d1558 100644 --- a/index.html +++ b/index.html @@ -6,14 +6,30 @@ - +
-

Product goes here

+ + +
+
+
+ +
+
+

{{ product }}

+
+
+
- + + + + diff --git a/main.js b/main.js index aedc73d86..a2af08489 100644 --- a/main.js +++ b/main.js @@ -1 +1,8 @@ -const product = 'Socks' +const app = Vue.createApp({ + data() { + return { + product: 'Socks', + image: './assets/images/socks_blue.jpg' + } + } +}) \ No newline at end of file