pleroma-fe/src/stores/i18n.js
2023-04-04 14:40:12 -06:00

14 lines
234 B
JavaScript

import { defineStore } from 'pinia'
export const useI18nStore = defineStore('i18n', {
state: () => ({
i18n: null
}),
actions: {
setI18n (newI18n) {
this.$patch({
i18n: newI18n.global
})
}
}
})