Skip to content

Instantly share code, notes, and snippets.

@gentritabazi
Created January 27, 2021 09:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gentritabazi/00797bbeb0ea634acf9dcb81b2150dc2 to your computer and use it in GitHub Desktop.
Save gentritabazi/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