forked from tornadocash/classic-ui
8 lines
263 B
JavaScript
8 lines
263 B
JavaScript
|
import { mapActions, mapGetters } from 'vuex'
|
||
|
|
||
|
export const recoverAccountMethods = mapActions('encryptedNote', ['clearState', 'recoverAccountFromKey'])
|
||
|
|
||
|
export const recoverAccountComputed = {
|
||
|
...mapGetters('encryptedNote', ['recoverAccountFromKeyRequest'])
|
||
|
}
|