我已经通过npm安装numeral.js
并添加到供应商套件中的aurelia.json
,然后我从价值转换器中使用它:
import numeral from 'numeral';
export class CurrencyValueConverter {
toView(value) {
return numeral(value).format('$0,0.00')
}
}
我收到以下错误TypeError: numeral_1.default is not a function
答案 0 :(得分:6)
尝试import * as numeral from 'numeral'