Skip to content

Commit 63b159b

Browse files
committed
build
1 parent 3784710 commit 63b159b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Vue-Adap-Table
22

3-
A Vue adaptable table, many components to be used to render and control lists
3+
A Vue adaptable table, some components to be used to render and control [Page Collections](https://github.com/simplitech/resource-collection)
44

55
# Install
66
```
@@ -22,7 +22,7 @@ On your Scss:
2222
@import "~simple-line-icons/scss/simple-line-icons";
2323
```
2424

25-
## Basic Usage
25+
## Usage
2626
```html
2727
<adap-searchfield :collection="collection" />
2828

@@ -38,7 +38,7 @@ On your Scss:
3838
</th>
3939
</tr>
4040

41-
<tr v-for="(item, i) in collection.all()" :key="item.$id">
41+
<tr v-for="item in collection.all()" :key="item.$id">
4242
<td>
4343
{{ item.title }}
4444
</td>
@@ -48,7 +48,9 @@ On your Scss:
4848
</tr>
4949
</table>
5050

51-
<adap-pagination :collection="collection" :gap="optionalNumberOfNumberedPages" />
51+
<adap-pagination
52+
:collection="collection"
53+
:gap="optionalNumberOfNumberedPages" />
5254
```
5355
On Code:
5456
```typescript

0 commit comments

Comments
 (0)