mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-25 12:35:15 +00:00
20 lines
319 B
Vue
20 lines
319 B
Vue
|
<template>
|
||
|
<main class="container-fluid">
|
||
|
<div class="container">
|
||
|
<BotAlerts />
|
||
|
</div>
|
||
|
|
||
|
<router-view />
|
||
|
</main>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import BotAlerts from '@/components/ftbot/BotAlerts.vue';
|
||
|
|
||
|
export default {
|
||
|
name: "Body",
|
||
|
components: {
|
||
|
BotAlerts
|
||
|
}
|
||
|
}
|
||
|
</script>
|