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'])
|
||
|
}
|