mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-27 05:25:17 +00:00
26 lines
408 B
Vue
26 lines
408 B
Vue
<template>
|
|
<div class="home">
|
|
<img alt="Vue logo" src="../assets/freqtrade-logo.png" />
|
|
<div class="hello">
|
|
<h1>Welcome to the Freqtrade UI</h1>
|
|
</div>
|
|
<div>
|
|
This Page allows you to control your trading bot.
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
// @ is an alias to /src
|
|
|
|
export default {
|
|
name: 'Home',
|
|
};
|
|
</script>
|
|
|
|
<style scoped>
|
|
.home {
|
|
margin-top: 1.5em;
|
|
}
|
|
</style>
|