mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 21:33:18 +01:00
25 lines
344 B
Vue
25 lines
344 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>
|
|
@import "@/main.css" reference;
|
|
[std="stdout"] {
|
|
@apply text-blue;
|
|
}
|
|
|
|
[std="stderr"] {
|
|
@apply text-red;
|
|
}
|
|
</style>
|