diff --git a/index.html b/index.html index 0c191c9..6851632 100644 --- a/index.html +++ b/index.html @@ -6,14 +6,13 @@ - + + +
-

Product goes here

+

{{ product }}

- - - diff --git a/main.js b/main.js index aedc73d..e915888 100644 --- a/main.js +++ b/main.js @@ -1 +1,9 @@ -const product = 'Socks' +const app = Vue.createApp({ + data() { + return { + product: 'Boots' + } + } +}).mount('#app'); + +app.product = "test"