This commit is contained in:
bwbl 2026-01-13 14:05:53 +01:00
parent 6ea7ba69e6
commit 68bf827963
2 changed files with 5 additions and 2 deletions

View File

@ -15,10 +15,11 @@
<div class="product-display"> <div class="product-display">
<div class="product-container"> <div class="product-container">
<div class="product-image"> <div class="product-image">
<!-- image goes here --> <img :src="image" alt="">
</div> </div>
<div class="product-info"> <div class="product-info">
<h1>{{ product }}</h1> <h1>{{ product }}</h1>
<a :href="url">{{ url }}</a>
</div> </div>
</div> </div>
</div> </div>

View File

@ -1,7 +1,9 @@
const app = Vue.createApp({ const app = Vue.createApp({
data() { data() {
return { return {
product: 'Socks' product: 'Socks',
image: './assets/images/socks_green.jpg',
url: 'https://etml.ch'
} }
} }
}) })