This commit is contained in:
2019-12-18 23:30:41 +00:00
parent f33aa0bce8
commit 1c50e05c08
5 changed files with 0 additions and 105 deletions

View File

@@ -1,21 +0,0 @@
<template>
<HelloWorld />
</template>
<script>
import HelloWorld from "../components/HelloWorld";
export default {
components: {
HelloWorld
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-home",
title: window.$gz.locale.get("Home"),
helpUrl: "user-form-home"
});
}
};
</script>

View File

@@ -1,21 +0,0 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-user-tie",
title: window.$gz.locale.get("Administration"),
helpUrl: "user-form-administration"
});
}
};
</script>

View File

@@ -1,21 +0,0 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-shipping-fast",
title: window.$gz.locale.get("Dispatch"),
helpUrl: "user-form-dispatch"
});
}
};
</script>

View File

@@ -1,21 +0,0 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-cogs",
title: window.$gz.locale.get("Operations"),
helpUrl: "user-form-operations"
});
}
};
</script>

View File

@@ -1,21 +0,0 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "fa-toolbox",
title: window.$gz.locale.get("Service"),
helpUrl: "user-form-service"
});
}
};
</script>