質問編集履歴

1

質問追記

2021/02/14 07:16

投稿

mikeko0901
mikeko0901

スコア227

test CHANGED
File without changes
test CHANGED
@@ -457,3 +457,33 @@
457
457
 
458
458
 
459
459
  ご教示いただけますと幸いです。
460
+
461
+
462
+
463
+ 【追記】
464
+
465
+ 回答の一部になるかもしれませんが、、、
466
+
467
+ 詳細ページ用コンポーネント TaskShowComponent.vueのscript内、
468
+
469
+ ```
470
+
471
+ methods: {
472
+
473
+ getTask() {
474
+
475
+ axios.get('/api/tasks/' + this.taskId)
476
+
477
+ .then((res) => {
478
+
479
+ this.task = res.data;
480
+
481
+ });
482
+
483
+ }
484
+
485
+ },
486
+
487
+ ```
488
+
489
+ のthisとは何なのでしょうか・・・