質問編集履歴
2
文法の修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -51,8 +51,7 @@
|
|
51
51
|
return row
|
52
52
|
})
|
53
53
|
}
|
54
|
-
const count: Number = this.count
|
55
|
-
return list.slice(0, count)
|
54
|
+
return list.slice(0, this.count)
|
56
55
|
}
|
57
56
|
}
|
58
57
|
```
|
1
文法の修正
title
CHANGED
File without changes
|
body
CHANGED
@@ -24,9 +24,9 @@
|
|
24
24
|
list: {key: string}[] = this.companies
|
25
25
|
searchWord: string = ''
|
26
26
|
selectCategory: string = ''
|
27
|
-
count:
|
27
|
+
count: number = 10
|
28
28
|
sort = { key: '', isAsc: false }
|
29
|
-
formError:
|
29
|
+
formError: string = ''
|
30
30
|
|
31
31
|
// computed
|
32
32
|
get sortedItems() {
|