classic-ui/modules/account/injectors/setupAccountInjectors.js

11 lines
304 B
JavaScript
Raw Normal View History

2022-04-22 06:05:56 +03:00
import { mapActions, mapGetters } from 'vuex'
export const setupAccountMethods = {
...mapActions('notice', ['addNoticeWithInterval']),
...mapActions('encryptedNote', ['clearState', 'setupAccount'])
}
export const setupAccountComputed = {
...mapGetters('encryptedNote', ['setupAccountRequest'])
}