frequi_origin/src/components/ftbot/Performance.vue

29 lines
548 B
Vue
Raw Normal View History

2020-05-06 04:38:57 +00:00
<template>
2020-05-22 18:04:27 +00:00
<div>
<div class="mb-2">
<h3>Performance</h3>
2020-05-09 18:32:47 +00:00
</div>
2020-05-22 18:04:27 +00:00
<b-table class="table-sm" :items="performanceStats" :fields="table_fields"></b-table>
2020-05-06 04:38:57 +00:00
</div>
</template>
<script>
import { mapState } from 'vuex';
export default {
2020-05-14 04:49:52 +00:00
name: 'Performance',
2020-05-06 04:38:57 +00:00
computed: {
...mapState('ftbot', ['performanceStats']),
},
2020-05-11 05:05:14 +00:00
data() {
return {
table_fields: [
{ key: 'pair', label: 'Pair' },
{ key: 'profit', label: 'Profit' },
{ key: 'count', label: 'Count' },
],
};
},
2020-05-06 04:38:57 +00:00
};
</script>