mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-02-03 13:11:34 +02:00
43 lines
769 B
Vue
43 lines
769 B
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"
|
|
} else if (this.status === 1) {
|
|
return "primary"
|
|
} else {
|
|
return "secondary"
|
|
}
|
|
},
|
|
|
|
text() {
|
|
if (this.status === 0) {
|
|
return "Down"
|
|
} else if (this.status === 1) {
|
|
return "Up"
|
|
} else {
|
|
return "Unknown"
|
|
}
|
|
},
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
span {
|
|
width: 45px;
|
|
}
|
|
.badge {
|
|
color: #0a0a0a;
|
|
}
|
|
</style>
|