Files
raven-client/ayanova/src/views/ops-backup.vue
2019-12-20 21:02:24 +00:00

22 lines
405 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: "file-archive",
title: window.$gz.locale.get("Backup"),
helpUrl: "form-ops-backup"
});
}
};
</script>