diff --git a/index.html b/index.html index 56c112638..136974c13 100644 --- a/index.html +++ b/index.html @@ -6,14 +6,19 @@ - +
-

Product goes here

+

{{product}}

- + + + + diff --git a/main.js b/main.js index aedc73d86..d38bdeed3 100644 --- a/main.js +++ b/main.js @@ -1 +1,7 @@ -const product = 'Socks' +const app = Vue.createApp({ + data() { + return { + product: 'Socks' + } + } +})