This commit is contained in:
EwelinaLasowy
2022-04-28 07:56:11 +02:00
parent d60dc75f99
commit 9778434772
5 changed files with 399 additions and 0 deletions

View File

@@ -295,6 +295,7 @@ import {
DocumentTextIcon,
AdjustmentsIcon,
KeyIcon,
TemplateIcon,
} from '@heroicons/vue/outline'
import { CheckIcon, ChevronDownIcon } from '@heroicons/vue/solid'
@@ -372,6 +373,13 @@ const navigation = computed(() =>
icon: KeyIcon,
can: true,
},
{
name: 'CV',
href: '/resumes',
section: 'Resumes',
icon: TemplateIcon,
can: true,
}
].filter(item => item.can))
</script>