回答編集履歴

1

書式の改善

2020/02/19 11:12

投稿

miso24
miso24

スコア75

test CHANGED
@@ -1,3 +1,21 @@
1
1
  二重括弧で囲むときや`v-bind`で変数をバインドするときなどhtmlに値を埋め込むとき`this`は必要ありません。
2
2
 
3
+ ```Vue
4
+
3
- `this.result.data.circle.circlename`を`result.data.circle.circlename`に変えてみてはどうでしょう?
5
+ {{ this.result.data.circle.circlename }}
6
+
7
+ {{ this.result.data.circle }}
8
+
9
+ ```
10
+
11
+ となっている部分を
12
+
13
+ ```Vue
14
+
15
+ {{ result.data.circle.circlename }}
16
+
17
+ {{ result.data.circle }}
18
+
19
+ ```
20
+
21
+ に変えてみてはどうでしょう?