2021-11-05 13:50:10 +01:00

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>