We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
参考: https://codesandbox.io/s/o56w8ywwoz?file=/src/App.js:108-122
"test": "{count, plural, =0 {no items} one {# item} other {# items}}"
intl.formatMessage({ id: "test" }, { count: 1 }) => 1 item
intl.formatMessage({ id: "test" }, { count: 0 }) => no items
intl.formatMessage({ id: "test" }, { count: 2 }) => 2 items
The text was updated successfully, but these errors were encountered:
formatjs/formatjs#868
Sorry, something went wrong.
面试相关 https://vue3js.cn/interview/webpack/Loader_Plugin.html#%E4%B8%89%E3%80%81%E7%BC%96%E5%86%99plugin
No branches or pull requests
参考: https://codesandbox.io/s/o56w8ywwoz?file=/src/App.js:108-122
"test": "{count, plural, =0 {no items} one {# item} other {# items}}"
intl.formatMessage({ id: "test" }, { count: 1 })
=> 1 item
intl.formatMessage({ id: "test" }, { count: 0 })
=> no items
intl.formatMessage({ id: "test" }, { count: 2 })
=> 2 items
The text was updated successfully, but these errors were encountered: