launcher/ui/src/components/LogComponent.vue

9 lines
167 B
Vue
Raw Normal View History

2024-09-23 16:12:34 +08:00
<script setup>
const log = inject('log')
const log_ele = inject('log_ele')
</script>
<template>
<n-log :log="log" style="flex-grow: 1" ref="log_ele" />
</template>