mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
10 lines
135 B
TypeScript
10 lines
135 B
TypeScript
/**
|
|
* i18n plugin module.
|
|
* @module i18n
|
|
*/
|
|
|
|
import { createI18n } from 'vue-i18n'
|
|
|
|
export default createI18n({
|
|
legacy: false,
|
|
})
|