Files
raven-client/ayanova/src/views/svc-quotes.vue
2021-02-09 23:51:26 +00:00

22 lines
409 B
Vue

<template>
<UnderConstruction data-cy="underconstruction" />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "$ayiPencilAlt",
title: "QuoteList",
helpUrl: "svc-quotes"
});
}
};
</script>