File tree 1 file changed +31
-1
lines changed
1 file changed +31
-1
lines changed Original file line number Diff line number Diff line change 1
1
<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 >
3
9
</template >
4
10
5
11
<script >
12
+ import { products } from ' ./data/products' ;
13
+
6
14
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
+ });
7
34
35
+ return match;
36
+ }
37
+ }
8
38
}
9
39
</script >
You can’t perform that action at this time.
0 commit comments