fecha cambio

This commit is contained in:
eithan
2021-01-21 20:17:05 -06:00
parent df3590779c
commit dff1573efb
+2 -1
View File
@@ -59,7 +59,8 @@ export default {
methods: {
fecha(date) {
const fecha = moment(date);
return `${fecha.year()}/${fecha.month() + 1}/${fecha.date()}`;
return `${fecha.date()}/${fecha.month() + 1}/${fecha.year()}`;
},
},
};