回答編集履歴
2
コードミス
test
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
|
5
5
|
```vue
|
6
6
|
|
7
|
-
computed{
|
7
|
+
computed: {
|
8
8
|
|
9
9
|
newValue(){
|
10
10
|
|
1
コード文法ミス
test
CHANGED
@@ -6,7 +6,7 @@
|
|
6
6
|
|
7
7
|
computed{
|
8
8
|
|
9
|
-
newValue
|
9
|
+
newValue(){
|
10
10
|
|
11
11
|
return this.comments[this.commentNumber];
|
12
12
|
|