app.component("product-display", { props: { premium: { type: Boolean, required: true, }, }, template: /*html*/ `

{{ title }}

In Stock

Out of Stock

Shipping: {{ shipping }}

  • {{ detail }}
`, data() { return { product: "Socks", brand: "Vue Mastery", selectedVariant: 0, details: ["50% cotton", "30% wool", "20% polyester"], variants: [ { id: 2234, color: "green", image: "./assets/images/socks_green.jpg", quantity: 50, }, { id: 2235, color: "blue", image: "./assets/images/socks_blue.jpg", quantity: 0, }, ], }; }, methods: { addToCart() { this.$emit("add-to-cart", this.variants[this.selectedVariant].id); this.cart += 1; }, 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; }, shipping() { if (this.premium) { return "Free"; } return 2.99; }, }, });