mirror of
https://github.com/amir20/dozzle.git
synced 2025-12-21 21:33:18 +01:00
27 lines
542 B
Vue
27 lines
542 B
Vue
<template>
|
|
<div class="inline-flex size-4" :health="health" v-if="health" :title="health">
|
|
<cil:check-circle v-if="health == 'healthy'" />
|
|
<cil:x-circle v-else-if="health == 'unhealthy'" />
|
|
<cil:circle v-else />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { ContainerHealth } from "@/types/Container";
|
|
|
|
defineProps<{
|
|
health: ContainerHealth | undefined;
|
|
}>();
|
|
</script>
|
|
|
|
<style scoped>
|
|
@import "@/main.css" reference;
|
|
[health="unhealthy"] {
|
|
@apply text-red;
|
|
}
|
|
|
|
[health="healthy"] {
|
|
@apply text-green;
|
|
}
|
|
</style>
|