docs/src/docs/vue-intl.mdx
This library contains our plugin for Vue.
<Tabs groupId="npm" defaultValue="npm" values={[ {label: 'npm', value: 'npm'}, {label: 'yarn', value: 'yarn'}, {label: 'pnpm', value: 'pnpm'}, ]}> <TabItem value="npm">
npm i -S vue-intl
yarn add vue-intl
pnpm add vue-intl
Initialize VueIntl plugin with the same IntlConfig documented in @formatjs/intl.
const app = createApp(App)
app.use(
createIntl({
locale: 'en',
defaultLocale: 'en',
messages: {
foo: 'bar',
},
})
)
From there you can use our APIs in 2 ways:
By specifying inject: {intl: intlKey}, you can use the full IntlFormatters API documented in @formatjs/intl.
Note: intlKey needs to be imported from vue-intl.
We also support Vue's Composition API with provideIntl & useIntl.
const Ancestor = {
setup() {
provideIntl(
createIntl({
locale: 'en',
defaultLocale: 'en',
messages: {
foo: 'Composed',
},
})
)
},
render() {
return h(Descendant)
},
}
const Descendant = {
setup() {
const intl = useIntl()
return () =>
h(
'p',
{},
intl.formatMessage({
id: 'foo',
defaultMessage: 'Hello',
})
)
},
}
You can also use our formatters in Vue template by prepending $ like below:
<template>
<p>{{ $formatNumber(3, {style: 'currency', currency: 'USD'}) }}</p>
</template>
We currently support:
$formatMessage$formatDate$formatTime$formatRelativeTime$formatTimeRange$formatDisplayName$formatListSee @formatjs/intl for the full list of API signatures.
formatjs toolchain fully supports vue:
.vue and JS/TS..vue SFC files.babel.TypeScript.Since }} & {{ are special tokens in .vue <template>, this can cause potential conflict with ICU MessageFormat syntax, e.g:
<template>
<p>
{{ $formatMessage({ defaultMessage: '{count, selectordinal, offset:1 one {#}
other {# more}}', }) }}
</p>
</template>
Notice the {# more}} where it ends with }}. This will cause parsing issue in your vue template. In order to work around this issue, we recommend using space to turn }} into } }.
<template>
<p>
{{
$formatMessage({
defaultMessage:
'{count, selectordinal, offset:1 one {#} other {# more} }',
})
}}
</p>
</template>