pleroma-fe/src/stores/i18n.js

14 lines
237 B
JavaScript
Raw Normal View History

2023-04-04 14:40:12 -06:00
import { defineStore } from 'pinia'
export const useI18nStore = defineStore('i18n', {
state: () => ({
2026-01-06 16:22:52 +02:00
i18n: null,
2023-04-04 14:40:12 -06:00
}),
actions: {
2026-01-06 16:22:52 +02:00
setI18n(newI18n) {
2023-04-04 14:40:12 -06:00
this.$patch({
2026-01-06 16:22:52 +02:00
i18n: newI18n.global,
2023-04-04 14:40:12 -06:00
})
2026-01-06 16:22:52 +02:00
},
},
2023-04-04 14:40:12 -06:00
})