Small size subset of Vue I18n
petite-vue-i18n
is an alternative distribution of Vue I18n, which provides only minimal features.
- The Size is smaller than vue-i18n
- CDN or without a Bundler
- Reduce size: runtime + compiler
~36%
, runtime only~49%
-
petite-vue-i18n
: runtime + compiler~7.48KB
, runtime only~4.07KB
(production build, brotli compression) -
vue-i18n
: runtime + compiler~11.71KB
, runtime only~8.30KB
(production build, brotli compression)
- Reduce size: runtime + compiler
- ES Modules for browser
- Reduce size: runtime + compiler
~35%
, runtime only~49%
-
petite-vue-i18n
: runtime + compiler~7.51KB
, runtime only~4.09KB
(production build, brotli compression) -
vue-i18n
: runtime + compiler~11.73KB
, runtime only~8.34KB
(production build, brotli compression)
- Reduce size: runtime + compiler
- Bundle size
- Reduce size from
vue-i18n
: runtime + compiler~14%
, runtime only~22%
(Code size check measurement of vue-i18n and petite-vue-i18n)
- Reduce size from
- CDN or without a Bundler
- The legacy API is not supported, only the composition API
- The APIs for the following DateTime Formats, Number Formats, and utilities aren’t included. Translation only
-
n
,$n
-
d
,$d
-
rt
,$rt
-
tm
,$tm
-
getDateTimeFormat
,setDateTimeFormat
,mergeDateTimeFormat
-
getNumberFormat
,setNumberFormat
,mergeNumberFormat
-
- The only locale messages that can be handled are simple key-values. if you can handle hierarchical locale messages, you need to customize them using the API
- The algorithm of local fallback is the array order specified in
fallbackLocale
- Custom directive
v-t
isn’t included - The following components provided by
vue-i18n
aren’t included- Translation
i18n-t
- DatetimeFormat
i18n-d
- NumberFormat
i18n-n
- Translation
vue-i18n
includes various i18n features such as translation, datetimes format and number formats. Some projects may only use translation and not datetime formats. At the moment, even in that case, the code for that feature is included.
If your project only uses t
or $t
API for translation, so we recommended you would use petite-vue-i18n
better than vue-i18n
. And your project needs the features of vue-i18n
, you can smoothly migrate from petite-vue-i18n
to vue-i18n
. This means that it’s progressive enhancement.
Note that petite-vue-i18n
is still experimental, and you may encounter bugs and unsupported use cases. Proceed at your own risk.
However, please don’t worry about it. Depending on the usage of petite-vue-i18n
and the feedback, we would like to use it refer to the development of the next version of vue-i18n
. This means we will to maintain it.
We welcome your feedback on petite-vue-i18n
.
Basically, it’s the same as installing vue-i18n
. The only difference is that the part of URL or part of path are changed from vue-i18n
to petite-vue-i18n
.
You need to insert the following scripts to end of <head>
:
<script src="https://unpkg.com/vue@next"></script>
<script src="https://unpkg.com/petite-vue-i18n"></script>
The following is the application code with the script tag:
<script>
const { createApp } = Vue
const { createI18n } = PetiteVueI18n
const i18n = createI18n({
// something vue-i18n options here ...
})
const app = createApp({
// something vue options here ...
})
app.use(i18n)
app.mount('#app')
</script>
NPM:
npm install petite-vue-i18n
Yarn:
yarn add petite-vue-i18n
import { createApp } from 'vue'
import { createI18n } from 'petite-vue-i18n'
const i18n = createI18n({
// something vue-i18n options here ...
})
const app = createApp({
// something vue options here ...
})
app.use(i18n)
app.mount('#app')
Template:
<div id="app">
<h1>{{ t('hello world') }}</h1>
</div>
Scripts:
const { createApp } = Vue
const { createI18n, useI18n } = PetiteVueI18n
// or for ES modules
// import { createApp } from 'vue'
// import { createI18n } from 'petite-vue-i18n'
const i18n = createI18n({
locale: 'en',
messages: {
en: {
'hello world': 'Hello world!'
},
ja: {
'hello world': 'こんにちは、世界!'
}
}
})
// define App component
const App = {
setup() {
const { t } = useI18n()
return { t }
}
}
const app = createApp(App)
app.use(i18n)
app.mount('#app')
In petite-vue-i18n
, the message resolver and locale fallbacker use simple implementations to optimize code size, as described in the differences section, as the belows:
- message resolver
- Resolves key-value style locale messages
- About implementation, see the here
- locale fallbacker
- Fallback according to the array order specified in
fallbackLocale
- If a simple string locale is specified, fallback to that locale
- About implementation, see the here
- Fallback according to the array order specified in
If you want to use the same message resolver and locale fallbacker as vue-i18n
, you can change them using the API.
Note that at this time, only bundlers like vite and webpack are supported.
You need to install @intlify/core-base
to your project with package manager.
$ npm install --save @intlify/core-base@alpha
# or
# yarn add @intlify/core-base@alpha
Then, at the entry point of the application, configure the message resolver and locale fallbacker using the API as the below:
import { createApp } from 'vue'
import { createI18n } from 'petite-vue-i18n'
import {
registerMessageResolver, // register the message resolver API
resolveValue, // message resolver of vue-i18n which is used by default
registerLocaleFallbacker, // register the locale fallbacker API
fallbackWithLocaleChain // locale fallbacker of vue-i18n which is used by default
} from '@intlify/core-base'
// register message resolver of vue-i18n
registerMessageResolver(resolveValue)
// register locale fallbacker of vue-i18n
registerLocaleFallbacker(fallbackWithLocaleChain)
// some thing code ...
// ...
With the above settings, locale message resolving and locale fallbacking will be handled in the same way as in vue-i18n, note that the code size will increase slightly.