Добавил в nuxt проект, модуль
moment-module, установил согласно мануалу в readme.md
Однако при использовании в компоненте ::::
...
computed: {
currentMonth (): string {
return this.$moment(this.viewableDate).format('mmmm')
},
daysInMonth (): number {
return this.$moment(this.viewableDate).daysInMonth()
}
}
...
Получаю ошибку в выражении this.$moment(...)
This expression is not callable.
Not all constituents of type '(() => any) | ComputedOptions<any>' are callable.
Type 'ComputedOptions<any>' has no call signatures.Vetur(2349)