mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* added vue the mask types * added types for vue-moment * added types for vue-moment * added types for vue-moment replaced void by undefined
16 lines
254 B
TypeScript
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") }}
|
|
`,
|
|
});
|