cannery/assets/js/date.js

12 lines
284 B
JavaScript
Raw Normal View History

export default {
displayDate (el) {
const date =
2025-01-31 22:07:41 -05:00
Intl.DateTimeFormat([], { timeZone: 'UTC', dateStyle: 'short' })
.format(new Date(el.dateTime))
el.innerText = date
},
mounted () { this.displayDate(this.el) },
updated () { this.displayDate(this.el) }
}