This commit is contained in:
2020-01-30 00:10:10 +00:00
parent 536e22bfb2
commit ba1a76842f
2 changed files with 6 additions and 5 deletions

View File

@@ -153,7 +153,8 @@ export default {
"Customize",
"ObjectCustomFieldCustomGrid",
"RowsPerPage",
"PageOfPageText"
"PageOfPageText",
"Loading"
],
decimalValidate(required) {
return { required: required, decimal: [2, this.format().decimalSeparator] };

View File

@@ -15,6 +15,7 @@
itemsPerPageText: lt('RowsPerPage'),
pageText: lt('PageOfPageText')
}"
:loading-text="lt('Loading')"
class="elevation-1"
></v-data-table>
<!-- <hr />
@@ -45,8 +46,7 @@ export default {
headers: [],
totalRecords: 0,
records: [],
rowsPerPageItems: [5, 10, 25, 50, 100],
pageText: "{0}-{1} van {2}"
rowsPerPageItems: [5, 10, 25, 50, 100]
};
},
props: {
@@ -70,8 +70,8 @@ export default {
deep: true
},
"$vuetify.breakpoint.xs": function(value) {
console.log("MINI CHANGED TRIGGERING GET DATA");
this.getDataFromApi();
//for now, not going with my own mini mode but may revisit so keeping this for now
// this.getDataFromApi();
}
},
methods: {