diff --git a/index.html b/index.html index e9a842e..6fa0b1d 100644 --- a/index.html +++ b/index.html @@ -15,10 +15,11 @@
- +

{{ product }}

+ {{ url }}
diff --git a/main.js b/main.js index d38bdee..e65c384 100644 --- a/main.js +++ b/main.js @@ -1,7 +1,9 @@ const app = Vue.createApp({ data() { return { - product: 'Socks' + product: 'Socks', + image: './assets/images/socks_green.jpg', + url: 'https://etml.ch' } } })