mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-24 03:55:15 +00:00
59 lines
1.8 KiB
Vue
59 lines
1.8 KiB
Vue
<template>
|
|
<footer class="d-md-none">
|
|
<!-- Only visible on xs (phone) viewport! -->
|
|
<hr class="my-0" />
|
|
<div class="d-flex flex-align-center justify-content-between px-2">
|
|
<router-link v-if="!botStore.canRunBacktest" class="nav-link navbar-nav" to="/open_trades">
|
|
<OpenTradesIcon />
|
|
Trades
|
|
</router-link>
|
|
<router-link v-if="!botStore.canRunBacktest" class="nav-link navbar-nav" to="/trade_history">
|
|
<ClosedTradesIcon />
|
|
History
|
|
</router-link>
|
|
<router-link v-if="!botStore.canRunBacktest" class="nav-link navbar-nav" to="/pairlist">
|
|
<PairListIcon />
|
|
Pairlist
|
|
</router-link>
|
|
<router-link v-if="!botStore.canRunBacktest" class="nav-link navbar-nav" to="/balance">
|
|
<BalanceIcon />
|
|
Balance
|
|
</router-link>
|
|
<router-link v-if="!botStore.canRunBacktest" class="nav-link navbar-nav" to="/dashboard">
|
|
<DashboardIcon />
|
|
Dashboard
|
|
</router-link>
|
|
</div>
|
|
</footer>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import OpenTradesIcon from 'vue-material-design-icons/FolderOpen.vue';
|
|
import ClosedTradesIcon from 'vue-material-design-icons/FolderLock.vue';
|
|
import BalanceIcon from 'vue-material-design-icons/Bank.vue';
|
|
import PairListIcon from 'vue-material-design-icons/ViewList.vue';
|
|
import DashboardIcon from 'vue-material-design-icons/ViewDashboardOutline.vue';
|
|
import { defineComponent } from 'vue';
|
|
import { useBotStore } from '@/stores/ftbotwrapper';
|
|
|
|
export default defineComponent({
|
|
name: 'NavFooter',
|
|
components: { OpenTradesIcon, ClosedTradesIcon, BalanceIcon, PairListIcon, DashboardIcon },
|
|
setup() {
|
|
const botStore = useBotStore();
|
|
return {
|
|
botStore,
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
[data-theme='dark'] {
|
|
.router-link-active,
|
|
.nav-link:active {
|
|
color: white !important;
|
|
}
|
|
}
|
|
</style>
|