[Vuejs]-Vue js return wrong datetime from Laravel/MySQL DB

0👍

maybe the problem with timezone.suggest to use timestamp as usual.and then use moment-timezone to format it.
for example:

import moment from 'moment-timezone';
moment.tz.setDefault('utc');

Leave a comment