RK
Size: a a a
RK
SL
SL
SL
SL
RK
SL
SL
RK
E
SL
RK
SL
ak
AL
computed: {
email: {
get: () => {
return this.$store.state.index.email;
},
set: (value) => {
this.$store.commit('index/setEmail', value);
}
}
},
PM
computed: {
email: {
get: () => {
return this.$store.state.index.email;
},
set: (value) => {
this.$store.commit('index/setEmail', value);
}
}
},
AL
PM
computed: {
email: {
get () {
return this.$store.state.index.email;
},
set(value) {
this.$store.commit('index/setEmail', value);
}
}
},