[Vuejs]-Format date with moment vuejs

0👍

Since you are using moment you can try:

const today = new Date();
this.hoy = moment(today).format('YYYY-M-D')

Leave a comment