Skip to content
Snippets Groups Projects
Forked from funkwhale / funkwhale
6065 commits behind the upstream repository.
HumanDate.vue 455 B
<template>
  <time :datetime="date" :title="date | moment">{{ realDate | ago($store.state.ui.momentLocale) }}</time>
</template>
<script>
import {mapState} from 'vuex'
export default {
  props: ['date'],
  computed: {
    ...mapState({
      lastDate: state => state.ui.lastDate
    }),
    realDate () {
      if (this.lastDate) {
        // dummy code to trigger a recompute to update the ago render
      }
      return this.date
    }
  }
}
</script>