classic-ui/modules/account/store/mutations/index.js

14 lines
339 B
JavaScript
Raw Normal View History

2022-04-22 06:05:56 +03:00
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
}