回答編集履歴

1

整形

2018/12/26 06:18

投稿

de9
de9

スコア312

test CHANGED
@@ -34,17 +34,17 @@
34
34
 
35
35
  data: {
36
36
 
37
- lists: [
37
+ lists: [
38
38
 
39
- {id: 1, content: "aaa"},
39
+ {id: 1, content: "aaa"},
40
40
 
41
- {id: 2, content: "bbb"},
41
+ {id: 2, content: "bbb"},
42
42
 
43
- {id: 3, content: "ccc"},
43
+ {id: 3, content: "ccc"},
44
44
 
45
- {id: 4, content: "ddd"},
45
+ {id: 4, content: "ddd"},
46
46
 
47
- ],
47
+ ],
48
48
 
49
49
  message: null
50
50
 
@@ -68,7 +68,7 @@
68
68
 
69
69
  },
70
70
 
71
- created: function(){
71
+ created: function(){
72
72
 
73
73
  this.debouncedGetAnswer = _.debounce(this.listupdate, 1000)
74
74
 
@@ -76,13 +76,13 @@
76
76
 
77
77
  methods: {
78
78
 
79
- listupdate (listid) {
79
+ listupdate (listid) {
80
80
 
81
81
  console.log('更新します')
82
82
 
83
83
  this.message = null
84
84
 
85
- }
85
+ }
86
86
 
87
87
  }
88
88