@modeltables/fontawesome-vuetify 3.3.1 → 3.5.0
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 +8 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
@modeltables/fontawesome-vuetify
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
#Install
|
|
4
4
|
|
|
5
5
|
```bash
|
|
6
6
|
pnpm add @modeltables/fontawesome-vuetify
|
|
7
7
|
```
|
|
8
8
|
|
|
9
|
-
|
|
9
|
+
#Quick start
|
|
10
10
|
|
|
11
11
|
1. Create Header and DataItem Model
|
|
12
12
|
|
|
@@ -47,14 +47,17 @@ export class ExampleModel {
|
|
|
47
47
|
@rowClick="rowClick($event)">
|
|
48
48
|
```
|
|
49
49
|
|
|
50
|
-
|
|
50
|
+
#Documentation
|
|
51
51
|
|
|
52
|
-
|
|
52
|
+
Make a quick look at model table in your database.
|
|
53
53
|
|
|
54
54
|
Before populating table, think about right types and order of models.
|
|
55
|
+
|
|
56
|
+
Columns are in bond with coresponding dataItem property, based on field type table renders rows with appropriate single input control, in near future with multiple control option.
|
|
57
|
+
|
|
55
58
|
Table should exsist with at least one virtual element at runtime with filter option enabled.
|
|
56
59
|
|
|
57
|
-
Default events for coordinated items are load and search with accompanying
|
|
60
|
+
Default events for coordinated items are load and search with accompanying filter parameters.
|
|
58
61
|
|
|
59
62
|
Loading is mandatory while data items are retreving with option to use crud operation and right tool.
|
|
60
63
|
|