diff --git a/components/Experience.vue b/components/Experience.vue index 5395c8d..15d8692 100644 --- a/components/Experience.vue +++ b/components/Experience.vue @@ -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 } }