Skip to content

Commit c1a0134

Browse files
committed
Retrieved route parameter
1 parent a60d220 commit c1a0134

File tree

1 file changed

+31
-1
lines changed

1 file changed

+31
-1
lines changed

src/ViewProduct.vue

+31-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,39 @@
11
<template>
2-
<h1>Viewing a product</h1>
2+
<div>
3+
<h1>{{ product.name }}</h1>
4+
<p><strong>ID:</strong> {{ product.id }}</p>
5+
<p><strong>Price:</strong> {{ product.price | currency }}</p>
6+
<p><strong>In stock:</strong> {{ product.inStock }}</p>
7+
<p>{{ product.description }}</p>
8+
</div>
39
</template>
410

511
<script>
12+
import { products } from './data/products';
13+
614
export default {
15+
data() {
16+
return {
17+
products: products,
18+
product: null
19+
};
20+
},
21+
created() {
22+
let productId = this.$route.params.productId;
23+
this.product = this.getProduct(productId);
24+
},
25+
methods: {
26+
getProduct(productId) {
27+
let match = null;
28+
29+
this.products.forEach(function(product) {
30+
if (product.id == productId) {
31+
match = product;
32+
}
33+
});
734
35+
return match;
36+
}
37+
}
838
}
939
</script>

0 commit comments

Comments
 (0)