21 lines
357 B
Vue
21 lines
357 B
Vue
<template>
|
|
<v-list>
|
|
<v-list-item link to="/main/bar/geruecht">
|
|
<v-list-item-icon>
|
|
<v-icon>local_drink</v-icon>
|
|
</v-list-item-icon>
|
|
<v-list-item-title>
|
|
Geruecht
|
|
</v-list-item-title>
|
|
</v-list-item>
|
|
</v-list>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'BarNavigation'
|
|
}
|
|
</script>
|
|
|
|
<style scoped></style>
|