回答編集履歴
1
書式の改善
test
CHANGED
@@ -1,3 +1,21 @@
|
|
1
1
|
二重括弧で囲むときや`v-bind`で変数をバインドするときなどhtmlに値を埋め込むとき`this`は必要ありません。
|
2
2
|
|
3
|
+
```Vue
|
4
|
+
|
3
|
-
|
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
|
+
に変えてみてはどうでしょう?
|