[Vuejs]-VUE-JSON-EXCEL Change format date

-1👍

try for loop the result, then convert it using momentJS. I’m sure you can mate.

0👍

data: {
    json_fields: {
        "Date": {
            field: "dateReserve",
            callback: (value) => {
                return moment(value).format('YYYY-MM-DD');
            },
        },
    },
},

Leave a comment