mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-21 23:53:52 +00:00
Export TradeView
This commit is contained in:
parent
9e84ab1058
commit
8eab68d3d5
|
@ -11,16 +11,18 @@
|
|||
</nav>
|
||||
</header>
|
||||
<main>
|
||||
<button class="btn-primary" >asdf</button>
|
||||
<TradeView />
|
||||
</main>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import TradeView from './ftbot/TradeView.vue';
|
||||
|
||||
export default {
|
||||
name: 'App',
|
||||
components: {
|
||||
'TradeView': TradeView,
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
|
15
src/ftbot/TradeView.vue
Normal file
15
src/ftbot/TradeView.vue
Normal file
|
@ -0,0 +1,15 @@
|
|||
<template>
|
||||
<div>
|
||||
TradeViewContent
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
name: 'TradeView',
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
|
||||
</style>
|
|
@ -1,5 +1,5 @@
|
|||
const apiBase = '/api/v1/'
|
||||
|
||||
module.exports(
|
||||
apiBase
|
||||
)
|
||||
export default {
|
||||
apiBase,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user