Blame view

report-ui/src/store/modules/help.js 223 Bytes
王涛 authored
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
const help = {
  state: {
    id: 0,
    val: '',
    title: ''
  },
  mutations: {
    setCategory(state, val) {
      state.id = 0
      state.val = val.value
      state.title = val.label
    }
  }
}

export default help