基于umi的开发模板

global.ts 142B

1234567891011
  1. export default {
  2. state: {
  3. count: 1,
  4. },
  5. reducers: {
  6. add: (state: any, { payload }: any) => {
  7. state.count += 1;
  8. }
  9. }
  10. }