front end, config

This commit is contained in:
lesion
2019-02-26 01:17:52 +01:00
parent 887157f2a9
commit bae404f422
58 changed files with 12862 additions and 157 deletions

11
client/src/filters.js Normal file
View File

@@ -0,0 +1,11 @@
import moment from 'moment'
moment.locale('it')
export default {
datetime (value) {
return moment(value).format('ddd, D MMMM HH:mm')
},
hour (value) {
return moment(value).format('HH:mm')
}
}