8 lines
153 B
TypeScript
8 lines
153 B
TypeScript
|
import { IRootState } from '@/store/modules/root/interfaces'
|
||
|
|
||
|
export const state: IRootState = {
|
||
|
root: true,
|
||
|
language: 'en',
|
||
|
errorMessage: null,
|
||
|
}
|