petite-vue-i18n-lite
TypeScript icon, indicating that this package has built-in type declarations

1.0.3 • Public • Published

🔥️ Petite Vue I18n Lite

A super lightweight and minimal plugin that introduces internationalization into your Petite Vue app with a simple API.

🚀 Usage

import { createApp } from 'petite-vue';
import { createI18n } from 'petite-vue-i18n-lite';

const i18n = createI18n({
    locale: 'en',
    fallbackLocale: 'en',
    messages: {
        en: {
            home: 'Home'
        }
    }
});

createApp(i18n).mount();

Then use it in your HTML: <p>{{t('home')}}</p>

You can optionally add a v-t directive, provided that i18n is reactive:

import { createApp, reactive } from 'petite-vue';
import { createI18n } from 'petite-vue-i18n-lite';

const i18n = reactive(createI18n({
    locale: 'en',
    fallbackLocale: 'en',
    messages: {
        en: {
            home: 'Home'
        }
    }
}));

createApp(i18n).directive('t', ({el, get, effect}) => effect(() => el.textContent = i18n.t(get()))).mount();

Then use it in your HTML: <p v-t="'home'">Home</p>

You can find the current locale using: {{current}}

You can change it using: @click="changeLocale('en')"

📦 Install

yarn add petite-vue-i18n-lite

CDN

<script src="https://unpkg.com/petite-vue-i18n-lite"></script>

It will be exposed to global as window.VueI18nLite

📄 License

MIT License © 2021 Erik Pham & niu tech

Package Sidebar

Install

npm i petite-vue-i18n-lite

Weekly Downloads

107

Version

1.0.3

License

MIT

Unpacked Size

27.6 kB

Total Files

9

Last publish

Collaborators

  • niutech