fantasia-archive/src/boot/i18n.ts

17 lines
272 B
TypeScript
Raw Normal View History

2021-07-10 04:38:42 +12:00
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 }