Skip to content

Commit 967844d

Browse files
committed
Implementierung_Einrichtungsassistent unter System->Einrichtungsassistent
1 parent 90469ca commit 967844d

File tree

3 files changed

+831
-0
lines changed

3 files changed

+831
-0
lines changed

src/components/OpenwbPageNavbar.vue

+7
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,13 @@
189189
System
190190
</a>
191191
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
192+
<router-link
193+
to="/System/InstallAssistant"
194+
class="dropdown-item"
195+
active-class="active disabled"
196+
>
197+
Einrichtungsassistent
198+
</router-link>
192199
<router-link
193200
to="/System/CloudConfiguration"
194201
class="dropdown-item"

src/router/index.js

+8
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,14 @@ const routes = [
174174
},
175175
component: () => import("../views/DataManagement.vue"),
176176
},
177+
{
178+
path: "/System/InstallAssistant",
179+
name: "InstallAssistant",
180+
meta: {
181+
heading: "System - Einrichtungsassistent",
182+
},
183+
component: () => import("../views/InstallAssistant.vue"),
184+
},
177185
];
178186
/* examples for development only start here */
179187
if (import.meta.env.MODE !== "production") {

0 commit comments

Comments
 (0)