728x90
Angular Material 의 Datepicker with custom formats 샘플 소스를 테스트 하는 중 발생한 에러이다.
https://material.angular.io/components/datepicker/overview
import {default as _rollupMoment} from 'moment'; 의 default 에서 빨간 밑줄이 그어지며 “moment” has no exported member 'default' 라는 에러가 출력되고 해결 방법은 아래와 같다.
tsconfig.json파일의 "compilerOptions" 에 "allowSyntheticDefaultImports": true, 한 줄을 추가한다.
출처 : https://stackoverflow.com/questions/54766706/moment-has-no-exported-member-default
728x90
'Study Note > Angular' 카테고리의 다른 글
ionic 5 #ion-select close event 셀렉트박스 닫힘 이벤트 (0) | 2020.07.08 |
---|---|
Angular 8 #error: MatNativeDateModule, MatMomentDateModule, or provide a custom implementation. (0) | 2020.05.07 |
Angular 8 #ExpressionChangedAfterItHasBeenCheckedError (0) | 2020.04.27 |
ionic 5 #remove ion-item activated css event (0) | 2020.02.17 |
ionic 5 #이 시스템에서 스크립트를 실행할 수 없으므로... 에러해결 (0) | 2020.01.24 |
댓글