Files
raven-client/ayanova/src/views/accounting.vue
2019-07-24 15:15:52 +00:00

21 lines
385 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: "fa-file-invoice-dollar",
title: window.$gz.locale.get("Accounting")
});
}
};
</script>