This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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>
|
||||
|
||||
@@ -66,7 +66,7 @@ export default {
|
||||
});
|
||||
},
|
||||
components: {
|
||||
WidgetList,
|
||||
WidgetList
|
||||
// WarehouseTop,
|
||||
// POTop,
|
||||
// PartTop,
|
||||
|
||||
Reference in New Issue
Block a user