2020-05-06 05:09:27 +00:00
|
|
|
<template>
|
|
|
|
<div class="home">
|
2020-05-18 19:55:14 +00:00
|
|
|
<img alt="Freqtrade logo" src="../assets/freqtrade-logo.png" />
|
2020-05-06 05:09:27 +00:00
|
|
|
<div>
|
2020-05-18 19:55:14 +00:00
|
|
|
<h1>Welcome to the Freqtrade UI</h1>
|
2020-05-06 05:09:27 +00:00
|
|
|
</div>
|
2020-05-27 18:13:25 +00:00
|
|
|
<div>This page allows you to control your trading bot.</div>
|
|
|
|
<br />
|
|
|
|
<p>
|
|
|
|
If you need any help, please refer to the
|
|
|
|
<a href="https://www.freqtrade.io/en/latest/">Freqtrade Documentation</a>.
|
|
|
|
</p>
|
2020-05-06 05:09:27 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2020-06-20 15:10:11 +00:00
|
|
|
<script lang='ts'>
|
|
|
|
import { Component, Vue } from 'vue-property-decorator';
|
2020-05-06 05:09:27 +00:00
|
|
|
|
2020-06-20 15:10:11 +00:00
|
|
|
@Component
|
|
|
|
export default class Home extends Vue {}
|
2020-05-06 05:09:27 +00:00
|
|
|
</script>
|
|
|
|
|
2020-05-06 17:38:52 +00:00
|
|
|
<style scoped>
|
|
|
|
.home {
|
|
|
|
margin-top: 1.5em;
|
|
|
|
}
|
|
|
|
</style>
|