Skip to content

Instantly share code, notes, and snippets.

@gent-fella-health
Created January 27, 2021 09:57
Show Gist options
  • Save gent-fella-health/00797bbeb0ea634acf9dcb81b2150dc2 to your computer and use it in GitHub Desktop.
Save gent-fella-health/00797bbeb0ea634acf9dcb81b2150dc2 to your computer and use it in GitHub Desktop.
Vue format date Mixin
import moment from 'moment';
export default {
methods: {
formatDate: function (date, dateFormat) {
return moment(date).format(dateFormat);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment