mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-10-31 03:30:39 +00:00
26 lines
363 B
Vue
26 lines
363 B
Vue
|
<template>
|
||
|
<span>{{ displayText }}</span>
|
||
|
</template>
|
||
|
|
||
|
<script>
|
||
|
import dayjs from "dayjs";
|
||
|
import relativeTime from "dayjs/plugin/relativeTime"
|
||
|
dayjs.extend(relativeTime)
|
||
|
|
||
|
export default {
|
||
|
props: {
|
||
|
value: String,
|
||
|
},
|
||
|
|
||
|
computed: {
|
||
|
displayText() {
|
||
|
return this.value
|
||
|
},
|
||
|
}
|
||
|
}
|
||
|
</script>
|
||
|
|
||
|
<style scoped>
|
||
|
|
||
|
</style>
|