質問編集履歴
1
一部自分で解決できたので、エラー部分を修正しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -20,11 +20,11 @@
|
|
20
20
|
|
21
21
|
<div v-for="r in res" :key="res.id">
|
22
22
|
|
23
|
-
{{ r.images[Math.min(r.images.position)].image_path }}
|
23
|
+
{{ r.images[Math.min(Number(r.images.position))].image_path }}
|
24
24
|
|
25
25
|
<!-- 期待する結果: "https://hoge.png" -->
|
26
26
|
|
27
|
-
<!-- 実際の結果:
|
27
|
+
<!-- 実際の結果: Cannot read property 'image_path' of undefined -->
|
28
28
|
|
29
29
|
<hr>
|
30
30
|
|
@@ -106,7 +106,7 @@
|
|
106
106
|
|
107
107
|
```
|
108
108
|
|
109
|
-
上記で試してみたのですが
|
109
|
+
上記で試してみたのですがCannot read property 'image_path' of undefinedエラーになってしまい、思う結果が得られませんでした。
|
110
110
|
|
111
111
|
methodを定義すべきか(作成しなくて済むものか、作成しないと叶わないのか)も、勘所がわからず...
|
112
112
|
|