mirror of
https://framagit.org/les/gancio.git
synced 2025-02-01 00:52:01 +01:00
25 lines
586 B
JavaScript
25 lines
586 B
JavaScript
import Vue from 'vue'
|
|
import VueI18n from 'vue-i18n'
|
|
|
|
Vue.use(VueI18n)
|
|
|
|
export default ({ app, store }) => {
|
|
// 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: 'it',
|
|
messages: {
|
|
'it': require('~/locales/it.json')
|
|
// 'fr': require('~/locales/fr.json')
|
|
}
|
|
})
|
|
|
|
// app.i18n.path = (link) => {
|
|
// if (app.i18n.locale === app.i18n.fallbackLocale) {
|
|
// return `/${link}`
|
|
// }
|
|
|
|
// return `/${app.i18n.locale}/${link}`
|
|
// }
|
|
}
|