質問編集履歴

3

2019/04/17 03:53

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -42,13 +42,13 @@
42
42
 
43
43
  //App.js
44
44
 
45
- Vue.component('App', {
45
+ const App = {
46
46
 
47
47
  template: '<div><span class="red">Red</span></div>
48
48
 
49
- <style scoped>.red { color: red; }</style>
49
+ <style scoped>.red { color: red; }</style>',
50
50
 
51
- })
51
+ }
52
52
 
53
53
  ```
54
54
 

2

2019/04/17 03:53

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
 
4
4
 
5
- ```
5
+ ```vue
6
6
 
7
7
  //App.vue
8
8
 
@@ -38,7 +38,7 @@
38
38
 
39
39
  となっているものを
40
40
 
41
- ```
41
+ ```js
42
42
 
43
43
  //App.js
44
44
 

1

2019/04/17 00:56

投稿

退会済みユーザー
test CHANGED
File without changes
test CHANGED
@@ -2,7 +2,9 @@
2
2
 
3
3
 
4
4
 
5
+ ```
6
+
5
- ```App.vue
7
+ //App.vue
6
8
 
7
9
  <template>
8
10
 
@@ -36,7 +38,9 @@
36
38
 
37
39
  となっているものを
38
40
 
41
+ ```
42
+
39
- ```App.js
43
+ //App.js
40
44
 
41
45
  Vue.component('App', {
42
46