This commit is contained in:
2020-12-21 12:49:41 +01:00
parent 2c5eaf5f97
commit ddfcf3570b
4 changed files with 10 additions and 6 deletions

View File

@@ -42,7 +42,7 @@ export default {
methods: {
formatDate(date) {
const dateFormat = date.split('-')
return date === 'Today' ? 'Today' : this.$t('month.' + dateFormat[0]) + " " + dateFormat[1]
return date === 'Today' ? this.$t('date.today') : this.$t('month.' + dateFormat[0]) + " " + dateFormat[1]
}
}
}