Skip to content

Instantly share code, notes, and snippets.

@uno-de-piera
Created May 31, 2019 13:29
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 uno-de-piera/b24ea10f593f90db91bfab8c5faa42ee to your computer and use it in GitHub Desktop.
Save uno-de-piera/b24ea10f593f90db91bfab8c5faa42ee to your computer and use it in GitHub Desktop.
Vue.filter('formatDate', function(value) {
if (value) {
return moment(String(value)).format('DD/MM/YYYY hh:mm:ss')
}
return 'N/A';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment