Nuxt/examples/i18n/plugins/i18n.js

18 lines
404 B
JavaScript
Raw Normal View History

2017-02-08 17:49:16 +00:00
import Vue from 'vue'
2017-04-14 09:55:04 +00:00
import VueI18n from 'vue-i18n'
2017-02-08 17:49:16 +00:00
2017-04-14 09:55:04 +00:00
Vue.use(VueI18n)
2017-05-31 11:21:55 +00:00
export default ({ app, store }) => {
2017-05-21 19:01:08 +00:00
// Set i18n instance on app
// This way we can use it in middleware and pages asyncData/fetch
app.i18n = new VueI18n({
locale: store.state.locale,
fallbackLocale: 'en',
messages: {
'en': require('~/locales/en.json'),
'fr': require('~/locales/fr.json')
}
})
}