/** * @title number */ import React from 'react' import { reactIntlFactory } from '@alicloud/console-components-intl' const intl = reactIntlFactory() const money = 1000.099 const App: React.FC<{}> = () => { return (
原始的:{money}
格式化后的:{intl.number(1000.099)}
格式化为日元货币格式: {intl.number(1000.099, { style: 'currency', currency: 'JPY', })}
格式化为人民币货币格式: {intl.number(1000.099, { style: 'currency', currency: 'RMB', })}