mirror of
https://github.com/ThatGuySam/doesitarm.git
synced 2026-05-18 06:44:46 -07:00
24 lines
382 B
Vue
24 lines
382 B
Vue
<template>
|
|
|
|
<span>{{ relativeTime }}</span>
|
|
|
|
</template>
|
|
|
|
<script>
|
|
import parseGithubDate from '~/helpers/parse-github-date'
|
|
|
|
export default {
|
|
props: {
|
|
timestamp: {
|
|
type: Number,
|
|
required: true
|
|
}
|
|
},
|
|
computed: {
|
|
relativeTime () {
|
|
return parseGithubDate(this.timestamp).relative
|
|
}
|
|
}
|
|
}
|
|
|
|
</script>
|