You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
264 B
JavaScript

export default {
namespaced : true,
state : {
replyPattern : uni.getStorageSync('replyPattern') || '0'
},
mutations : {
SET_REPLY_PATTERN(state,value){
state.replyPattern = value;
uni.setStorageSync('replyPattern',value)
}
},
actions : {
}
}