[Vuejs]-Change Vuetify format date in <td> to spesific format

1👍

you can use https://momentjs.com/

moment(form.registration_date).format('DD/MM/YYYY h:mm:ss')

To use the moment.js

npm install moment –save

after installing import it to the vue file that want to integrate.

like this:
import moment from ‘moment’

Leave a comment