frequi_origin/src/components/layout/Body.vue
2021-03-10 16:10:20 +01:00

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>