27 lines
486 B
Vue
27 lines
486 B
Vue
|
<template>
|
||
|
<v-list>
|
||
|
<v-list-item link to="/main/management/servicemanagement">
|
||
|
<v-list-item-icon>
|
||
|
<v-icon>{{ work }}</v-icon>
|
||
|
</v-list-item-icon>
|
||
|
<v-list-item-title>
|
||
|
Dienstverwaltung
|
||
|
</v-list-item-title>
|
||
|
</v-list-item>
|
||
|
</v-list>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import { mdiBriefcase } from '@mdi/js'
|
||
|
export default {
|
||
|
name: 'ManagementNavigation',
|
||
|
data() {
|
||
|
return {
|
||
|
work: mdiBriefcase
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped></style>
|