compute title value

This commit is contained in:
Denis Mishankov 2022-10-17 20:20:51 +03:00
parent a17084f75d
commit c7871427c3

View file

@ -1,5 +1,5 @@
<template> <template>
<span :class="className" :title="24 + $t('-hour')">{{ uptime }}</span> <span :class="className" :title="title">{{ uptime }}</span>
</template> </template>
<script> <script>
@ -75,6 +75,14 @@ export default {
return ""; return "";
}, },
title() {
if (this.type === "720") {
return `30 ${this.$t("-day")}`;
}
return `24 ${this.$t("-hour")}`;
}
}, },
}; };
</script> </script>