diff --git a/conf/init.json b/conf/init.json index 0e56529..34e0ebf 100644 --- a/conf/init.json +++ b/conf/init.json @@ -1,47 +1,81 @@ { - "title": "MyApp", - "api": { - "baseURL": "https://cx20.basehosts.de/api/v1/" + "ui": { + "title": "MyApp", + "api": { + "baseURL": "https://cx20.basehosts.de/api/v1/" + }, + "navigation": { + "main": [ + { + "name": "Dashboard", + "to": "/", + "icon": "icon-compass" + }, + { + "name": "Userlist", + "to": "/userlist", + "icon": "icon-contacts" + }, + { + "name": "Domainlist", + "to": "/domainlist", + "icon": "icon-contacts" + }, + { + "name": "FormDemo", + "to": "/formdemo", + "icon": "icon-contacts" + } + ], + "profile": [ + { + "name": "Profile anpassen", + "to": "/profile", + "icon": "icon-color-wand" + }, + { + "name": "Logout", + "to": "/logout", + "icon": "icon-log-out" + } + ] + } }, - "navigation": [ + "routes": [ { "name": "Login", "to": "/login", - "icon": "fa-home", - "content": "", - "show": { - "never": true - } + "content": "" }, { "name": "Dashboard", "to": "/", - "icon": "icon-compass", "content": "" }, { "name": "Userlist", "to": "/userlist", - "icon": "icon-contacts", "content": "" }, { "name": "Domainlist", "to": "/domainlist", - "icon": "icon-contacts", "content": "" }, { "name": "FormDemo", "to": "/formdemo", - "icon": "icon-contacts", "content": "" }, { "name": "Logout", "to": "/logout", - "icon": "icon-log-out", "content": "" + }, + { + "name": "Profil", + "to": "/profile", + "content": "

Profil anpassen

" } ] } \ No newline at end of file diff --git a/src/app.vue b/src/app.vue index fd095d5..4293e2a 100644 --- a/src/app.vue +++ b/src/app.vue @@ -1,7 +1,7 @@