Skip to content

Instantly share code, notes, and snippets.

@nikkanetiya
Created November 10, 2017 09:27
Show Gist options
  • Save nikkanetiya/ae78c549683985cd6c59b4ba82959edc to your computer and use it in GitHub Desktop.
Save nikkanetiya/ae78c549683985cd6c59b4ba82959edc to your computer and use it in GitHub Desktop.
Vue.js Filter to Format DateTime string to readable/custom format
import Vue from 'vue'
import moment from 'moment'
Vue.filter('formatDate', function (value) {
if (value) {
return moment(String(value)).format('MM/DD/YYYY hh:mm')
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment