DefinitelyTyped/types/vue-moment/vue-moment-tests.ts
domschmidt 8ce9123591 Vue moment types (#38435)
* added vue the mask types

* added types for vue-moment

* added types for vue-moment

* added types for vue-moment
replaced void by undefined
2019-09-25 09:40:13 -07:00

16 lines
254 B
TypeScript

import moment from 'moment';
import 'moment/locale/de';
import Vue from 'vue';
import VueMoment from 'vue-moment';
Vue.use(VueMoment, {
moment
});
new Vue({
el: '#app',
template: `
{{ new Date() | moment("dddd, MMMM Do YYYY") }}
`,
});