mirror of
https://github.com/tornadocash/tornado-classic-ui
synced 2024-02-02 15:04:09 +01:00
11 lines
304 B
JavaScript
11 lines
304 B
JavaScript
|
import { mapActions, mapGetters } from 'vuex'
|
||
|
|
||
|
export const setupAccountMethods = {
|
||
|
...mapActions('notice', ['addNoticeWithInterval']),
|
||
|
...mapActions('encryptedNote', ['clearState', 'setupAccount'])
|
||
|
}
|
||
|
|
||
|
export const setupAccountComputed = {
|
||
|
...mapGetters('encryptedNote', ['setupAccountRequest'])
|
||
|
}
|