Browse Source

Add link to project detail page to the side bar

pull/341/head
Hironsan 5 years ago
parent
commit
fc216f7fa7
1 changed files with 12 additions and 9 deletions
  1. 21
      frontend/components/organisms/TheSideBar.vue

21
frontend/components/organisms/TheSideBar.vue

@ -29,14 +29,17 @@
<script>
export default {
data: () => ({
items: [
{ icon: 'mdi-database', text: 'Dataset', link: 'dataset' },
{ icon: 'label', text: 'Labels', link: 'labels' },
{ icon: 'person', text: 'Members', link: 'members' },
{ icon: 'settings', text: 'Guideline', link: 'guideline' },
{ icon: 'chat_bubble', text: 'Statistics', link: 'statistics' }
]
})
data() {
return {
items: [
{ icon: 'mdi-home', text: 'Home', link: '' },
{ icon: 'mdi-database', text: 'Dataset', link: 'dataset' },
{ icon: 'label', text: 'Labels', link: 'labels' },
{ icon: 'person', text: 'Members', link: 'members' },
{ icon: 'settings', text: 'Guideline', link: 'guideline' },
{ icon: 'chat_bubble', text: 'Statistics', link: 'statistics' }
]
}
}
}
</script>
Loading…
Cancel
Save