mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +00:00
20 lines
596 B
Vue
20 lines
596 B
Vue
<template>
|
|
<div>
|
|
<div>
|
|
<b-navbar toggleable="sm" type="dark" variant="info">
|
|
<b-navbar-brand to="/">Adminbereich</b-navbar-brand>
|
|
|
|
<b-navbar-toggle target="nav-collapse"></b-navbar-toggle>
|
|
|
|
<b-collapse id="nav-collapse" is-nav>
|
|
<b-navbar-nav>
|
|
<b-nav-item to="/user">User</b-nav-item>
|
|
<b-nav-item to="/creation">Schöpfen</b-nav-item>
|
|
</b-navbar-nav>
|
|
</b-collapse>
|
|
<b-navbar-brand href="http://localhost:3000/vue/login">Profilbereich</b-navbar-brand>
|
|
</b-navbar>
|
|
</div>
|
|
</div>
|
|
</template>
|