examine.js 210 B

123456789101112131415
  1. export default {
  2. namespaced: true,
  3. state: {
  4. topGroupId: -1
  5. },
  6. mutations: {
  7. setTopGroupId(state, groupId) {
  8. state.topGroupId = groupId
  9. },
  10. delTopGroupId(state) {
  11. state.topGroupId = -1
  12. },
  13. }
  14. }