14 lines
234 B
JavaScript
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
|
|
})
|
|
}
|
|
}
|
|
})
|