This commit is contained in:
@@ -46,8 +46,7 @@ CURRENT TODOs
|
|||||||
=-=-=-=-=-=-=
|
=-=-=-=-=-=-=
|
||||||
|
|
||||||
SHELL / NAV / MENUS / LAYOUT
|
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
|
TODO: GRIDS
|
||||||
- MAKE GRID AS GENERIC VUE COMPONENT
|
- MAKE GRID AS GENERIC VUE COMPONENT
|
||||||
|
|||||||
@@ -13,8 +13,19 @@
|
|||||||
/* Xeslint-disable */
|
/* Xeslint-disable */
|
||||||
//DataTable component
|
//DataTable component
|
||||||
//https://vuetifyjs.com/en/components/data-tables#paginate-and-sort-server-side
|
//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 {
|
export default {
|
||||||
created() {},
|
created() {
|
||||||
|
console.log("gz-data-table viewport is XS = " + this.isXS());
|
||||||
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
loading: true,
|
loading: true,
|
||||||
@@ -24,6 +35,10 @@ export default {
|
|||||||
records: []
|
records: []
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
methods: {}
|
methods: {
|
||||||
|
isXS() {
|
||||||
|
return this.$vuetify.breakpoint.xs;
|
||||||
|
}
|
||||||
|
}
|
||||||
};
|
};
|
||||||
</script>
|
</script>
|
||||||
|
|||||||
@@ -66,7 +66,7 @@ export default {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
components: {
|
components: {
|
||||||
WidgetList,
|
WidgetList
|
||||||
// WarehouseTop,
|
// WarehouseTop,
|
||||||
// POTop,
|
// POTop,
|
||||||
// PartTop,
|
// PartTop,
|
||||||
|
|||||||
Reference in New Issue
Block a user