mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-24 03:55:15 +00:00
22 lines
360 B
Vue
22 lines
360 B
Vue
<template>
|
|
<main>
|
|
<BotAlerts />
|
|
<router-view />
|
|
</main>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
import BotAlerts from '@/components/ftbot/BotAlerts.vue';
|
|
|
|
export default defineComponent({
|
|
name: 'Body',
|
|
components: { BotAlerts },
|
|
});
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.container-main {
|
|
padding: 0;
|
|
}
|
|
</style>
|