23 lines
389 B
Vue
23 lines
389 B
Vue
<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>
|