mirror of
https://github.com/tornadocash/tornado-initiation-ui.git
synced 2024-11-25 10:58:26 +01:00
11 lines
261 B
JavaScript
11 lines
261 B
JavaScript
import { SET_AIRDROP, SET_NOTIFICATION } from './constant'
|
|
|
|
export default {
|
|
[SET_AIRDROP](state, airdrops) {
|
|
this._vm.$set(state, 'airdrops', airdrops)
|
|
},
|
|
[SET_NOTIFICATION](state, index) {
|
|
this._vm.$set(state, 'notificationIndex', index)
|
|
},
|
|
}
|