@modeltables/fontawesome-vuetify 3.7.0 → 3.8.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 +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -33,9 +33,9 @@ export class ExampleModel {
|
|
|
33
33
|
<Table
|
|
34
34
|
v-if="dataItems.length"
|
|
35
35
|
:options="{
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
36
|
+
Key: 'Id',
|
|
37
|
+
Active: true,
|
|
38
|
+
ShowKey: false
|
|
39
39
|
}"
|
|
40
40
|
:dataheader="dataheader"
|
|
41
41
|
:showFilters="true"
|
|
@@ -51,9 +51,9 @@ export class ExampleModel {
|
|
|
51
51
|
|
|
52
52
|
Make a quick look at model table in your database.
|
|
53
53
|
|
|
54
|
-
Before populating table, think about right types and order of
|
|
54
|
+
Before populating table, think about right types and order of model fields.
|
|
55
55
|
|
|
56
|
-
Columns are in
|
|
56
|
+
Columns are in relation with coresponding dataItem property, based on field type table renders rows with appropriate single input control, in near future with between and multiple controls.
|
|
57
57
|
|
|
58
58
|
Table should exsist with at least one virtual element at runtime with filter option enabled.
|
|
59
59
|
|