i have json return value, like this :
"registration_date": "2015-08-31T17:00:00.000Z",
and in this is the code i already tried based on this (stackoverflow) link :
How to format Vuetify data table date column?
<td class="text-left">{{ new Date(form.registration_date).toLocaleDateString() }}</td>
but it gives me 'Invalid Date' on the screen,
i want to make the date format like this : 31/08/2015 17:00:00
can someone help me?