1
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2025-02-03 13:11:34 +02:00

60 lines
1.1 KiB
Vue

<template>
<span class="badge rounded-pill" :class=" 'bg-' + color ">{{ text }}</span>
</template>
<script>
export default {
props: {
status: Number,
},
computed: {
color() {
if (this.status === 0) {
return "danger";
}
if (this.status === 1) {
return "primary";
}
if (this.status === 2) {
return "warning";
}
if (this.status === 3) {
return "maintenance";
}
return "secondary";
},
text() {
if (this.status === 0) {
return this.$t("Down");
}
if (this.status === 1) {
return this.$t("Up");
}
if (this.status === 2) {
return this.$t("Pending");
}
if (this.status === 3) {
return this.$t("Maintenance");
}
return this.$t("Unknown");
},
},
};
</script>
<style scoped>
span {
min-width: 64px;
}
</style>