added input masks to EmployeeDetails, started implementing Employees/Index. Updated to Vue 3.2.21

This commit is contained in:
Sockenklaus
2021-11-07 02:27:13 +01:00
parent cbd0db7ec5
commit e018db9e0a
10 changed files with 712 additions and 455 deletions

View File

@@ -16,18 +16,19 @@ async function onLogout() {
<template>
<nav class="nav justify-content-center border-bottom mb-4 pb-2 d-flex">
<router-link class="nav-link" to="/">Home</router-link>
<router-link class="nav-link" :to="{name: 'Home'}">Home</router-link>
<router-link v-if="userStore.isAdmin" :to="{name: 'Employees/Index'}" class="nav-link">Mitarbeiter</router-link>
<div class="ms-auto"></div>
<router-link
v-if="userStore.isLoggedIn"
class="nav-link"
to="/employees/me"
:to="{name: 'Employees/Details', params: {id: 'me'}}"
>
Profile
Profil
</router-link>
<a v-if="userStore.isLoggedIn" href="#" @click="onLogout()" class="nav-link">Logout</a>
<router-link v-else to="Login" class="nav-link">Login</router-link>
<router-link v-else :to="{name: 'Login'}" class="nav-link">Login</router-link>
</nav>
</template>