teratail header banner
teratail header banner
質問するログイン新規登録

回答編集履歴

2

}を付け忘れました

2021/06/27 00:13

投稿

mogmo
mogmo

スコア13

answer CHANGED
@@ -1,14 +1,14 @@
1
1
  調べたところ、
2
2
  ```html
3
3
  <div id="app"></div>
4
- <h1 :class="{ red:isActive ,'bg-color':!isActive">Hello</h1>
4
+ <h1 :class="{ red:isActive ,'bg-color':!isActive}">Hello</h1>
5
5
  </div>
6
6
  ```
7
7
 
8
8
  ```html
9
- <div id="app"></div>
9
+ <div id="app">
10
- <h1 :class="{ red:isActive,'bg-color':!isActive}">Hello</h1>
10
+ <h1 :class="{red:isActive,'bg-color':!isActive}">Hello</h1>
11
- </div>
11
+ </div>
12
12
  ```
13
13
 
14
14
  に変えてください。

1

}を付け忘れました

2021/06/27 00:13

投稿

mogmo
mogmo

スコア13

answer CHANGED
@@ -1,13 +1,13 @@
1
1
  調べたところ、
2
2
  ```html
3
3
  <div id="app"></div>
4
- <h1 :class="{ red:isActive,'bg-color':!isActive">Hello</h1>
4
+ <h1 :class="{ red:isActive ,'bg-color':!isActive">Hello</h1>
5
5
  </div>
6
6
  ```
7
7
 
8
8
  ```html
9
9
  <div id="app"></div>
10
- <h1 :class="{ red:isActive,'bg-color':!isActive">Hello</h1>
10
+ <h1 :class="{ red:isActive,'bg-color':!isActive}">Hello</h1>
11
11
  </div>
12
12
  ```
13
13