mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-25 04:25:15 +00:00
22 lines
421 B
Vue
22 lines
421 B
Vue
<template>
|
|
<main class="container-fluid container-main">
|
|
<BotAlerts />
|
|
<router-view />
|
|
</main>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Vue } from 'vue-property-decorator';
|
|
import BotAlerts from '@/components/ftbot/BotAlerts.vue';
|
|
|
|
@Component({
|
|
components: { BotAlerts },
|
|
})
|
|
export default class Body extends Vue {}
|
|
</script>
|
|
<style lang="scss" scoped>
|
|
.container-main {
|
|
padding: 0;
|
|
}
|
|
</style>
|