This commit is contained in:
21
ayanova/src/views/dashboard.vue
Normal file
21
ayanova/src/views/dashboard.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: "tachometer-alt",
|
||||
title: window.$gz.locale.get("DashboardDashboard"),
|
||||
helpUrl: "user-form-dashboard"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
21
ayanova/src/views/memo.vue
Normal file
21
ayanova/src/views/memo.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: "inbox",
|
||||
title: window.$gz.locale.get("Memo"),
|
||||
helpUrl: "user-form-memo"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
21
ayanova/src/views/reminder.vue
Normal file
21
ayanova/src/views/reminder.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: "sticky-note",
|
||||
title: window.$gz.locale.get("ScheduleMarkerList"),
|
||||
helpUrl: "user-form-reminder"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
21
ayanova/src/views/schedule.vue
Normal file
21
ayanova/src/views/schedule.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: "calendar-alt",
|
||||
title: window.$gz.locale.get("Schedule"),
|
||||
helpUrl: "user-form-schedule"
|
||||
});
|
||||
}
|
||||
};
|
||||
</script>
|
||||
Reference in New Issue
Block a user