1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
import { createStore } from 'vuex';
export default createStore({
state () {
return {
from: {
server: 'localhost',
port: 3143,
username: 'from@example.org',
password: 'password',
},
to: {
server: 'localhost',
port: 31432,
username: 'to@example.org',
password: 'password',
},
};
},
mutations: {
setFrom (state, payload) {
state.from = Object.assign(state.from, payload);
},
setTo (state, payload) {
state.to = Object.assign(state.to, payload);
},
},
});
|