frequi_origin/src/views/Home.vue

24 lines
388 B
Vue
Raw Normal View History

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-18 19:55:14 +00:00
<div>This Page allows you to control your trading bot.</div>
2020-05-06 05:09:27 +00:00
</div>
</template>
<script>
// @ is an alias to /src
export default {
name: 'Home',
};
</script>
<style scoped>
.home {
margin-top: 1.5em;
}
</style>