This commit is contained in:
@@ -23,7 +23,7 @@ export default {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "tachometer-alt",
|
||||
title: window.$gz.locale.get("DashboardDashboard"),
|
||||
title: window.$gz.locale.get("Dashboard"),
|
||||
helpUrl: "form-home-dashboard"
|
||||
});
|
||||
}
|
||||
|
||||
@@ -13,7 +13,7 @@ export default {
|
||||
window.$gz.eventBus.$emit("menu-change", {
|
||||
isMain: true,
|
||||
icon: "sticky-note",
|
||||
title: window.$gz.locale.get("ScheduleMarkerList"),
|
||||
title: window.$gz.locale.get("ReminderList"),
|
||||
helpUrl: "form-home-reminders"
|
||||
});
|
||||
}
|
||||
|
||||
21
ayanova/src/views/home-search.vue
Normal file
21
ayanova/src/views/home-search.vue
Normal 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: "search",
|
||||
title: window.$gz.locale.get("Search"),
|
||||
helpUrl: "form-home-search"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user