Created
January 27, 2021 09:57
-
-
Save gent-fella-health/00797bbeb0ea634acf9dcb81b2150dc2 to your computer and use it in GitHub Desktop.
Vue format date Mixin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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