Make the app name in the breadcrumb dynamic
This commit is contained in:
parent
0af97a969f
commit
7022f9cb99
4 changed files with 33 additions and 4 deletions
|
@ -2,7 +2,7 @@
|
|||
<div>
|
||||
<banner>
|
||||
<template v-slot:banner-left>
|
||||
<project-breadcrumb/>
|
||||
<project-breadcrumb :app-name="appName"/>
|
||||
</template>
|
||||
</banner>
|
||||
Project
|
||||
|
@ -13,6 +13,13 @@
|
|||
import ProjectBreadcrumb from '@/components/ProjectBreadcrumb'
|
||||
|
||||
export default {
|
||||
props: {
|
||||
appName: {
|
||||
type: String,
|
||||
required: true
|
||||
}
|
||||
},
|
||||
|
||||
components: {
|
||||
ProjectBreadcrumb
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue