21 lines
368 B
Vue
21 lines
368 B
Vue
<template>
|
|
<UnderConstruction />
|
|
</template>
|
|
|
|
<script>
|
|
import UnderConstruction from "../components/underconstruction.vue";
|
|
|
|
export default {
|
|
components: {
|
|
UnderConstruction
|
|
},
|
|
beforeCreate() {
|
|
this.$gzevent.$emit("menu-change", {
|
|
isMain: true,
|
|
icon: "fa-shipping-fast",
|
|
title: this.$gzlocale.get("Dispatch")
|
|
});
|
|
}
|
|
};
|
|
</script>
|