This commit is contained in:
2020-01-10 19:47:20 +00:00
parent 56e4f4a32f
commit eb6e285fba
4 changed files with 53 additions and 9 deletions

View File

@@ -0,0 +1,22 @@
<template>
<GzDataTable />
</template>
<script>
import GzDataTable from "../components/gz-data-table.vue";
export default {
components: {
GzDataTable
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "vial",
title: window.$gz.locale.get("WidgetList")
//,
//helpUrl: "form-inv-parts"
});
}
};
</script>