frequi_origin/src/views/LogView.vue
2022-07-13 07:34:45 +02:00

18 lines
313 B
Vue

<template>
<div class="p-4 h-100">
<LogViewer />
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import LogViewer from '@/components/ftbot/LogViewer.vue';
export default defineComponent({
name: 'LogView',
components: { LogViewer },
});
</script>
<style scoped></style>