diff --git a/index.html b/index.html index 56c112638..69e523991 100644 --- a/index.html +++ b/index.html @@ -10,10 +10,14 @@
-

Product goes here

+

{{ product }}

+

{{description}}

+ diff --git a/main.js b/main.js index aedc73d86..6bb902a25 100644 --- a/main.js +++ b/main.js @@ -1 +1,8 @@ -const product = 'Socks' +const app = Vue.createApp({ + data(){ + return{ + product : 'Sandels', + description : 'Sandels are good.' + } + } +})