mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
21 lines
325 B
Vue
21 lines
325 B
Vue
<template>
|
|
<span>{{ relativeDateTime }}</span>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'HcRelativeDateTime',
|
|
props: {
|
|
dateTime: {
|
|
type: [Date, String],
|
|
required: true
|
|
}
|
|
},
|
|
computed: {
|
|
relativeDateTime() {
|
|
return this.$filters.relativeDateTime(this.dateTime)
|
|
}
|
|
}
|
|
}
|
|
</script>
|