This commit is contained in:
2019-12-18 20:38:32 +00:00
parent e55edaf571
commit d57bb13501
13 changed files with 310 additions and 13 deletions

View File

@@ -0,0 +1,21 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
window.$gz.eventBus.$emit("menu-change", {
isMain: true,
icon: "store",
title: window.$gz.locale.get("VendorList"),
helpUrl: "user-form-vendors"
});
}
};
</script>