1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 13:23:07 +01:00
Files
dozzle/assets/components/LogViewer/LogStd.vue
2025-04-26 20:35:14 -07:00

25 lines
337 B
Vue

<template>
<Tag size="small" :std="std" class="items-start!">
{{ std }}
</Tag>
</template>
<script lang="ts" setup>
import { Std } from "@/models/LogEntry";
defineProps<{
std: Std;
}>();
</script>
<style scoped>
@reference "@/main.css";
[std="stdout"] {
@apply text-blue;
}
[std="stderr"] {
@apply text-red;
}
</style>