mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-24 03:55:15 +00:00
18 lines
335 B
Vue
18 lines
335 B
Vue
|
<template>
|
||
|
<div class="p-4 h-100">
|
||
|
<LogViewer />
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script lang="ts">
|
||
|
import { Component, Vue } from 'vue-property-decorator';
|
||
|
import LogViewer from '@/components/ftbot/LogViewer.vue';
|
||
|
|
||
|
@Component({
|
||
|
components: { LogViewer },
|
||
|
})
|
||
|
export default class LogView extends Vue {}
|
||
|
</script>
|
||
|
|
||
|
<style scoped></style>
|