我在角度 5 中使用时刻 v2.22.0,这就是我在模块中导入它的方式 -
import * as moment from 'moment';
并在组件中使用它 -
export class ChatComponent {
.
.
.
public moment: any = moment;
.
.
}
当我在 html 模板中使用它时 -
<div>{{moment(activeTeam.createdAt).format('LL')}}</div>
它给了我一条错误消息-
[Angular] Member 'moment' is not callable
谁能告诉我我做错了什么!