diff --git a/index.html b/index.html index 56c11263..69e52399 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 aedc73d8..6bb902a2 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.' + } + } +})