This repository has been archived on 2024-07-10. You can view files and clone it, but cannot push or open issues or pull requests.
frontend/src/components/BottomNavigation.vue

45 lines
1.2 KiB
Vue
Raw Normal View History

2023-07-15 10:52:21 +00:00
<template>
<v-layout class="overflow-visible" style="height: 56px">
2023-08-01 18:34:46 +00:00
<v-bottom-navigation>
<v-btn :to="{name: 'home'}"
block rounded="lg"
min-width="20px"
max-width="120px">
2023-07-15 10:52:21 +00:00
<v-icon>mdi-map</v-icon>
แผนท
</v-btn>
2023-08-01 18:34:46 +00:00
<v-btn :to="{name: 'favorite'}"
block rounded="lg"
min-width="20px"
max-width="120px">
2023-07-15 10:52:21 +00:00
<v-icon>mdi-heart</v-icon>
สถานทโปรด
</v-btn>
2023-08-01 18:34:46 +00:00
<v-btn :to="{name: 'setting'}"
block rounded="lg"
min-width="20px"
max-width="120px">
2023-07-15 10:52:21 +00:00
<v-icon>mdi-cog</v-icon>
การตงค
</v-btn>
2023-08-01 18:34:46 +00:00
2023-07-15 10:52:21 +00:00
</v-bottom-navigation>
</v-layout>
</template>
<script>
import {RouterLink} from 'vue-router';
export default {
data: () => ({ value: 1 }),
}
2023-08-01 18:34:46 +00:00
</script>
<style>
.v-btn {
min-width: 50px;
}
</style>