Moment format filter

merge-requests/154/head
Eliot Berriot 2018-02-22 23:34:31 +01:00
rodzic 2cd90ff4bd
commit d0a9873a07
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DD6965E2476E5C27
1 zmienionych plików z 7 dodań i 0 usunięć

Wyświetl plik

@ -28,6 +28,13 @@ export function ago (date) {
Vue.filter('ago', ago)
export function momentFormat (date, format) {
format = format || 'lll'
return moment(date).format(format)
}
Vue.filter('moment', momentFormat)
export function capitalize (str) {
return str.charAt(0).toUpperCase() + str.slice(1)
}