frequi_origin/src/views/Home.vue
2020-09-08 11:53:34 +02:00

30 lines
663 B
Vue

<template>
<div class="home">
<img alt="Freqtrade logo" src="../assets/freqtrade-logo.png" />
<div>
<h1>Welcome to the Freqtrade UI</h1>
</div>
<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>
<p>Have fun - <i>wishes you the Freqtrade team</i></p>
</div>
</template>
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
@Component
export default class Home extends Vue {}
</script>
<style scoped>
.home {
margin-top: 1.5em;
}
</style>