Files
raven-client/ayanova/src/views/service.vue
2019-07-24 15:15:52 +00:00

21 lines
370 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-toolbox",
title: window.$gz.locale.get("Service")
});
}
};
</script>