0.1.2 • Published 1 year ago

@instance-oom/i18n-locales v0.1.2

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

💿 Installation

npm i @instance-oom/i18n-locales
// vite.config.ts
import i18nLocalesPlugin from '@instance-oom/i18n-locales';

export default defineConfig({
  plugins: [
    i18nLocalesPlugin({ dir: path.resolve(__dirname, './src/locales') }),
    vue()
  ],
})
// xxx.ts
import { createApp } from 'vue'
import { createI18n } from 'vue-i18n'
/*
 * All i18n resources specified in the plugin `include` option can be loaded
 * at once using the import syntax
 */
import locales from '@instance-oom/i18n-locales/locales';

const i18n = createI18n({
  locale: 'en',
  messages: locales
})

const app = createApp()
app.use(i18n).mount('#app')
0.1.0

1 year ago

0.1.2

1 year ago

0.1.1

1 year ago

0.0.5

1 year ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago