From 68bf8279631cb464892d28cf21606afdbdbc3d91 Mon Sep 17 00:00:00 2001 From: bwbl Date: Tue, 13 Jan 2026 14:05:53 +0100 Subject: [PATCH] L3 --- index.html | 3 ++- main.js | 4 +++- 2 files changed, 5 insertions(+), 2 deletions(-) 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' } } })