22 lines
365 B
Vue
22 lines
365 B
Vue
<template>
|
|
<HelloWorld />
|
|
</template>
|
|
|
|
<script>
|
|
import HelloWorld from "../components/HelloWorld";
|
|
|
|
export default {
|
|
components: {
|
|
HelloWorld
|
|
},
|
|
beforeCreate() {
|
|
window.$gz.eventBus.$emit("menu-change", {
|
|
isMain: true,
|
|
icon: "fa-home",
|
|
title: window.$gz.locale.get("Home"),
|
|
helpUrl: "user-form-home"
|
|
});
|
|
}
|
|
};
|
|
</script>
|