This commit is contained in:
2020-01-07 16:52:04 +00:00
parent 630e9d98d7
commit f3b24c6458

View File

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