classic-ui/modules/account/injectors/setupAccountInjectors.js
2022-10-13 15:50:29 +02:00

11 lines
314 B
JavaScript

import { mapActions, mapGetters } from 'vuex'
export const setupAccountMethods = {
...mapActions('notice', ['addNoticeWithInterval']),
...mapActions('encryptedNote', ['clearState', 'setupAccount'])
}
export const setupAccountComputed = {
...mapGetters('encryptedNote', ['setupAccountRequest'])
}