Files
raven-client/ayanova/src/views/users.vue
2019-12-18 20:49:20 +00:00

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