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

1.0.2 • Public • Published

🔥️ Vue I18n Lite

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

🚀 Usage

Plugin

import { createApp } from 'vue';
import { createI18n } from 'vue-i18n-lite';
import App from './App.vue';

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

const app = createApp(App);
app.use(i18n);

Composition API

import { useI18n } from 'vue-i18n-lite';

export default {
    setup() {
        const i18n = useI18n()
        i18n.createI18n({
            locale: 'en',
            fallbackLocale: 'en',
            messages: {
                'en': {
                    home: 'Home'
                }
            }
        })

        const { current, changeLocale } = i18n

        return {
            current,
            changeLocale
        }
    }
}

📦 Install

yarn add vue-i18n-lite

CDN

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

It will be exposed to global as window.VueI18nLite

Changelog

Detail changes for each release are documented in the CHANGELOG.md file.

❤️ Thanks

This project is inspired by the following awesome projects.

📄 License

MIT License © 2021 Erik Pham

Package Sidebar

Install

npm i vue-i18n-lite

Weekly Downloads

714

Version

1.0.2

License

MIT

Unpacked Size

36.1 kB

Total Files

13

Last publish

Collaborators

  • phucpm