This commit is contained in:
2019-12-18 20:49:20 +00:00
parent 6a9ab7f5b9
commit 607207dce4
3 changed files with 81 additions and 123 deletions

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: "users",
title: window.$gz.locale.get("UserList"),
helpUrl: "user-form-users"
});
}
};
</script>