2020-05-17 21:41:38 +00:00
|
|
|
<template>
|
2020-09-12 14:34:19 +00:00
|
|
|
<main class="container-fluid h-100 container-main">
|
2020-05-18 18:10:34 +00:00
|
|
|
<BotAlerts />
|
|
|
|
<router-view />
|
|
|
|
</main>
|
2020-05-17 21:41:38 +00:00
|
|
|
</template>
|
|
|
|
|
2020-06-20 15:25:52 +00:00
|
|
|
<script lang="ts">
|
|
|
|
import { Component, Vue } from 'vue-property-decorator';
|
2020-05-17 21:41:38 +00:00
|
|
|
import BotAlerts from '@/components/ftbot/BotAlerts.vue';
|
|
|
|
|
2020-06-20 15:25:52 +00:00
|
|
|
@Component({
|
|
|
|
components: { BotAlerts },
|
|
|
|
})
|
|
|
|
export default class Body extends Vue {}
|
2020-05-18 18:10:34 +00:00
|
|
|
</script>
|
2020-09-12 14:34:19 +00:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.container-main {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
</style>
|