pleroma-fe/src/stores/i18n.js

14 lines
234 B
JavaScript
Raw Normal View History

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