uptime-kuma/src/components/Datetime.vue

37 lines
782 B
Vue
Raw Normal View History

2021-06-30 13:04:58 +00:00
<template>
<span>{{ displayText }}</span>
</template>
<script>
import dayjs from "dayjs";
2022-04-13 16:30:32 +00:00
import relativeTime from "dayjs/plugin/relativeTime";
import timezone from "dayjs/plugin/timezone"; // dependent on utc plugin
2022-04-25 23:26:57 +00:00
import utc from "dayjs/plugin/utc";
2022-04-13 16:30:32 +00:00
dayjs.extend(utc);
dayjs.extend(timezone);
dayjs.extend(relativeTime);
2021-06-30 13:04:58 +00:00
export default {
props: {
2022-04-30 01:51:14 +00:00
value: {
type: String,
default: null,
},
2021-07-26 14:53:07 +00:00
dateOnly: {
type: Boolean,
default: false,
},
2021-06-30 13:04:58 +00:00
},
computed: {
displayText() {
2021-08-17 08:41:12 +00:00
if (this.dateOnly) {
return this.$root.date(this.value);
} else {
return this.$root.datetime(this.value);
2021-07-26 14:53:07 +00:00
}
2021-06-30 13:04:58 +00:00
},
2021-07-27 17:47:13 +00:00
},
2022-04-13 16:30:32 +00:00
};
2021-06-30 13:04:58 +00:00
</script>