29 lines
592 B
Vue
29 lines
592 B
Vue
<template>
|
|
<v-list>
|
|
<v-list-item class="title" link to="/main/gastro/pricelist">
|
|
<v-list-item-icon>
|
|
<v-icon>{{list}}</v-icon>
|
|
</v-list-item-icon>
|
|
<v-list-item-title>
|
|
Preisliste
|
|
</v-list-item-title>
|
|
</v-list-item>
|
|
</v-list>
|
|
</template>
|
|
|
|
<script>
|
|
import { mdiFileMultiple } from '@mdi/js'
|
|
export default {
|
|
name: "GastroNavigation",
|
|
data() {
|
|
return {
|
|
list: mdiFileMultiple
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|