mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 13:23:07 +01:00
* feat: adds support for different std out and err streams * feat: adds std to json * fixes tests * fixes deprecated code * fixes download * adds defineEmit as an option * chore: updates modules * adds ui elements * fixes tests * updates languages
26 lines
342 B
Vue
26 lines
342 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="scss" scoped>
|
|
.tag {
|
|
&[std="stdout"] {
|
|
color: var(--blue-color);
|
|
}
|
|
|
|
&[std="stderr"] {
|
|
color: var(--red-color);
|
|
}
|
|
}
|
|
</style>
|