Files
raven-client/ayanova/src/views/svc-unit-models.vue
2020-04-04 18:31:08 +00:00

22 lines
402 B
Vue

<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-dice-d20",
title: this.$ay.t("UnitModels"),
helpUrl: "form-svc-unit-models"
});
}
};
</script>