Skip to content

Commit

Permalink
Merge pull request #101 from nih-sparc/add-breadcrumb-to-dashboard
Browse files Browse the repository at this point in the history
Added breadcrumb to dashboard
  • Loading branch information
egauzens authored May 9, 2024
2 parents d878009 + f7594de commit b3e539f
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion pages/apps/dashboard/index.vue
Original file line number Diff line number Diff line change
@@ -1,8 +1,30 @@
<template>
<SparcDashboard />
<div>
<breadcrumb :breadcrumb="breadcrumb" :title=title />
<SparcDashboard />
</div>
</template>
<script>
export default {
name: 'SparcDashboardPage',
data() {
return {
title: 'SPARC Dashboard',
breadcrumb: [
{
label: 'Home',
to: {
name: 'index'
}
},
{
to: {
name: 'apps',
},
label: 'SPARC Apps',
}
]
}
}
}
</script>

0 comments on commit b3e539f

Please sign in to comment.