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