繁体   English   中英

使用打字稿+角度2的时刻

[英]Moment with typescript+angular2

我使用时刻js库和一切都没关系,除了一件事。

像这样使用初始化看起来不太好。 我不希望从'时刻'导入所有东西

import * as moment  from 'moment/moment';

我用它的一个地方:

        var differenceBeteweenDates = moment(toDate, this.dateFormat)
            .diff(moment(fromDate, this.dateFormat),
            "days");

我需要只导入必要的模块/功能。 我怎么能这样做?

 ps: import { Moment }  from 'moment/moment'; - don't contain all things what i need

import { Moment, fn, utc as moment } from 'moment/moment'; 并使用moment. 或者moment()你需要什么

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM