Files
raven-client/ayanova/src/views/ay-wiki.vue
2019-12-30 21:09:30 +00:00

22 lines
399 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: "feather",
title: window.$gz.locale.get("WikiPage"),
helpUrl: "form-ay-wiki"
});
}
};
</script>