classic-ui/modules/account/store/mutations/index.js
FreezyEx b32527e057 Revert "minor fixes"
This reverts commit 7f8f7c2aa15c8b8c6a7449d177f46f8a417e2f67.
2022-10-13 16:03:54 +02:00

14 lines
339 B
JavaScript

import { domain } from './Domain'
import { statistic } from './Statistic'
import { addresses } from './Addresses'
import { enabledSaveFile } from './EnabledSaveFile'
import { encryptedAccount } from './EncryptedAccount'
export const mutations = {
...domain,
...addresses,
...statistic,
...enabledSaveFile,
...encryptedAccount
}