vue-slim-tables 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/dist/types/helpers/to_query_string.d.ts +2 -0
- package/dist/vst.es.js +15 -1649
- package/dist/vst.es.js.map +1 -1
- package/dist/vst.umd.js +1 -4
- package/dist/vst.umd.js.map +1 -1
- package/package.json +2 -3
package/README.md
CHANGED
|
@@ -9,7 +9,7 @@ npm install vue-slim-tables
|
|
|
9
9
|
|
|
10
10
|
```html
|
|
11
11
|
<template>
|
|
12
|
-
<VueSlimTables :columns="columns"
|
|
12
|
+
<VueSlimTables :columns="columns" source="/users" />
|
|
13
13
|
</template>
|
|
14
14
|
|
|
15
15
|
<script>
|
|
@@ -48,5 +48,5 @@ npm install vue-slim-tables
|
|
|
48
48
|
| #row:loading | - | Rewrite loading table rows markup |
|
|
49
49
|
| #cell:${column.key} | { row, index, column, value } | Rewrite cell with custom html |
|
|
50
50
|
| #pagination | { page, rows } | Rewrite pagination with your own implementation |
|
|
51
|
-
| #thead:before | { columns } |
|
|
52
|
-
| #thead:after | { columns } |
|
|
51
|
+
| #thead:before | { columns } | Render row before base header |
|
|
52
|
+
| #thead:after | { columns } | Render row after base header |
|