mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-23 11:35:14 +00:00
18 lines
313 B
Vue
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>
|