angular2にmoment.jsライブラリをインポートしようとしています。次の解決策を見つけました:
import {Component} from 'angular2/core';
import * as moment from 'moment';
@Component({
selector: 'app',
template: require('./app.component.html')
})
export class AppComponent {
moment:any = moment;
constructor() {}
}
ただし、これをすべてのコンポーネントにインポートしたくはありません。すべてのコンポーネントで使用できるようにグローバルに注入する方法はありますか?