frequi_origin/src/components/layout/Body.vue

17 lines
336 B
Vue
Raw Normal View History

<template>
2020-05-18 18:10:34 +00:00
<main class="container-fluid">
<BotAlerts />
<router-view />
</main>
</template>
2020-06-20 15:25:52 +00:00
<script lang="ts">
import { Component, Vue } from 'vue-property-decorator';
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>