This commit is contained in:
2019-07-09 23:20:32 +00:00
parent 0824a90097
commit 2fb123044e
4 changed files with 42 additions and 4 deletions

View File

@@ -0,0 +1,20 @@
<template>
<UnderConstruction />
</template>
<script>
import UnderConstruction from "../components/underconstruction.vue";
export default {
components: {
UnderConstruction
},
beforeCreate() {
this.$gzevent.$emit("menu-change", {
isMain: true,
icon: "sliders-h",
title: this.$gzlocale.get("Customize")
});
}
};
</script>