This commit is contained in:
2019-05-24 20:24:35 +00:00
parent 9fe11125fa
commit b1640e0baa
11 changed files with 405 additions and 18 deletions

View File

@@ -0,0 +1,20 @@
<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>