mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-27 15:41:45 +01:00
24 lines
306 B
Vue
24 lines
306 B
Vue
<template>
|
|
<Tag size="small" :std="std">
|
|
{{ std }}
|
|
</Tag>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { Std } from "@/models/LogEntry";
|
|
|
|
defineProps<{
|
|
std: Std;
|
|
}>();
|
|
</script>
|
|
|
|
<style lang="postcss" scoped>
|
|
[std="stdout"] {
|
|
@apply text-blue;
|
|
}
|
|
|
|
[std="stderr"] {
|
|
@apply text-red;
|
|
}
|
|
</style>
|