Skip to content

Instantly share code, notes, and snippets.

@bachhm-dev
Created July 19, 2020 16:26
Show Gist options
  • Save bachhm-dev/d9c8c2851779dc6e1e04d0aca8c7a8a1 to your computer and use it in GitHub Desktop.
Save bachhm-dev/d9c8c2851779dc6e1e04d0aca8c7a8a1 to your computer and use it in GitHub Desktop.
import Vue from 'vue'
const moment = require('moment-timezone')
// filter date
Vue.filter('formatUnix', function (value) {
if (value) {
return moment
.tz(value * 1000, 'Asia/Ho_Chi_Minh')
.format('DD/MM/YYYY hh:mm:ss')
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment