Files
raven-client/ayanova/src/views/dispatch.vue
2019-05-24 20:24:35 +00:00

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>