L8 ending code

This commit is contained in:
Adam Jahr 2020-07-06 22:28:50 -04:00
parent 58e74974e0
commit d440ca92fb
2 changed files with 24 additions and 11 deletions

View File

@ -20,7 +20,8 @@
<img v-bind:src="image">
</div>
<div class="product-info">
<h1>{{ product }}</h1>
<h1>{{ title }}</h1>
<p v-if="inStock">In Stock</p>
<p v-else>Out of Stock</p>
<ul>
@ -28,11 +29,13 @@
</ul>
<div
class="color-circle"
v-for="variant in variants"
v-for="(variant, index) in variants"
:key="variant.id"
@mouseover="updateImage(variant.image)"
:style="{ backgroundColor: variant.color }"></div>
@mouseover="updateVariant(index)"
class="color-circle"
:style="{ backgroundColor: variant.color }">
</div>
<button class="button" :class="{ disabledButton: !inStock }" :disabled="!inStock" v-on:click="addToCart">Add to Cart</button>
</div>
</div>

22
main.js
View File

@ -4,12 +4,11 @@ const app = Vue.createApp({
cart:0,
product: 'Socks',
brand: 'Vue Mastery',
image: './assets/images/socks_blue.jpg',
inStock: false,
selectedVariant: 0,
details: ['50% cotton', '30% wool', '20% polyester'],
variants: [
{ id: 2234, color: 'green', image: './assets/images/socks_green.jpg' },
{ id: 2235, color: 'blue', image: './assets/images/socks_blue.jpg' },
{ id: 2234, color: 'green', image: './assets/images/socks_green.jpg', quantity: 50 },
{ id: 2235, color: 'blue', image: './assets/images/socks_blue.jpg', quantity: 0 },
]
}
},
@ -17,8 +16,19 @@ const app = Vue.createApp({
addToCart() {
this.cart += 1
},
updateImage(variantImage) {
this.image = variantImage
updateVariant(index) {
this.selectedVariant = index
}
},
computed: {
title() {
return this.brand + ' ' + this.product
},
image() {
return this.variants[this.selectedVariant].image
},
inStock() {
return this.variants[this.selectedVariant].quantity
}
}
})