show user login data
This commit is contained in:
parent
d6f28022f0
commit
8c5b4429b1
5 changed files with 146 additions and 8 deletions
|
@ -2,7 +2,11 @@
|
|||
<div v-if="!defaultRoute && showBack" class="flex md:hidden flex-row items-baseline">
|
||||
<RouterLink
|
||||
v-if="!defaultRoute && showBack"
|
||||
:to="{ name: `${rootRoute}-${activeNavigation}-default` }"
|
||||
:to="{
|
||||
name:
|
||||
overviewFullOverwrite ??
|
||||
`${rootRoute}${useStagedOverviewLink ? ('-' + overviewOverwrite ?? activeNavigation) : ''}-default`,
|
||||
}"
|
||||
class="mid:hidden text-primary"
|
||||
>
|
||||
zur Übersicht
|
||||
|
@ -31,9 +35,17 @@ import { useNavigationStore } from "@/stores/admin/navigation";
|
|||
<script lang="ts">
|
||||
export default defineComponent({
|
||||
props: {
|
||||
header: {
|
||||
overviewFullOverwrite: {
|
||||
type: String,
|
||||
default: null,
|
||||
default: "",
|
||||
},
|
||||
overviewOverwrite: {
|
||||
type: String,
|
||||
default: "",
|
||||
},
|
||||
useStagedOverviewLink: {
|
||||
type: Boolean,
|
||||
default: true,
|
||||
},
|
||||
showBack: {
|
||||
type: Boolean,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue