This commit is contained in:
2020-12-21 13:01:48 +01:00
parent ddfcf3570b
commit c0853774b3

View File

@@ -46,6 +46,10 @@ export default {
return date === 'Today' ? this.$t('date.today') : this.$t('month.' + dateFormat[0]) + " " + dateFormat[1]
},
isSameDate() {
console.log(this.begin)
console.log(this.end)
console.log(this.end === this.begin)
console.log(this.end == this.begin)
return this.begin === this.end
}
}