launcher/ui/src/components/LogComponent.vue

27 lines
490 B
Vue
Raw Normal View History

2024-09-23 16:12:34 +08:00
<script setup>
2024-09-23 19:42:56 +08:00
import { darkTheme } from 'naive-ui'
2024-09-23 16:12:34 +08:00
const log = inject('log')
const log_ele = inject('log_ele')
</script>
<template>
2024-09-23 20:30:54 +08:00
<n-config-provider :theme="darkTheme" class="provider">
<n-card class="full" ref="log_ele" content-style="height: 100%">
<n-log :log="log" class="full" />
2024-09-23 19:42:56 +08:00
</n-card>
</n-config-provider>
2024-09-23 16:12:34 +08:00
</template>
2024-09-23 20:30:54 +08:00
<style scoped>
.provider {
flex-grow: 1;
overflow: hidden;
}
.full {
height: 100% !important;
box-sizing: border-box;
}
</style>