导入MomentJS导致以下错误:
ERROR in [...] Cannot invoke an expression whose type lacks a call signature. Type 'typeof moment' has no compatible call signatures.
如何解决此错误?
答案 0 :(得分:1)
最新版的MomentJS现在已定义类型。在没有外部输入的情况下重新安装MomentJS,并将您的导入更改为以下之一:
import * as moment from 'moment';
或
import moment from 'moment';