Files
raven-client/ayanova/src/views/administration.vue
2019-07-19 19:41:58 +00:00

21 lines
378 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-user-tie",
title: window.$gz.locale.get("Administration")
});
}
};
</script>