fantasia-archive/src/boot/i18n.ts
2021-07-09 18:38:42 +02:00

17 lines
272 B
TypeScript

import { boot } from 'quasar/wrappers'
import { createI18n } from 'vue-i18n'
import messages from 'src/i18n'
const i18n = createI18n({
locale: 'en-US',
messages
})
export default boot(({ app }) => {
// Set i18n instance on app
app.use(i18n)
})
export { i18n }