This commit is contained in:
2020-01-10 21:14:47 +00:00
parent b6a4e52acc
commit b8202eae0c
3 changed files with 19 additions and 5 deletions

View File

@@ -46,8 +46,7 @@ CURRENT TODOs
=-=-=-=-=-=-=
SHELL / NAV / MENUS / LAYOUT
TODO: MONTHLY BACKUP NOW!
- The offline drives are the only really safe storage for cases of ransomware etc so be on it from now on
TODO: GRIDS
- MAKE GRID AS GENERIC VUE COMPONENT

View File

@@ -13,8 +13,19 @@
/* Xeslint-disable */
//DataTable component
//https://vuetifyjs.com/en/components/data-tables#paginate-and-sort-server-side
/*
TODO:
Need minimal possible code in containing form
Should pass to this component all it needs to work independently for the most part
TO DETERMINE IF VIEWPORT IS XS:
this.$vuetify.breakpoint.xs
*/
export default {
created() {},
created() {
console.log("gz-data-table viewport is XS = " + this.isXS());
},
data() {
return {
loading: true,
@@ -24,6 +35,10 @@ export default {
records: []
};
},
methods: {}
methods: {
isXS() {
return this.$vuetify.breakpoint.xs;
}
}
};
</script>

View File

@@ -66,7 +66,7 @@ export default {
});
},
components: {
WidgetList,
WidgetList
// WarehouseTop,
// POTop,
// PartTop,