frequi_origin/src/views/Home.vue

26 lines
408 B
Vue
Raw Normal View History

2020-05-06 05:09:27 +00:00
<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>