Newer
Older
smartwell_front / src / store / modules / dict.js
const state = {
  sexList: [{ label: '男', value: '0' }, { label: '女', value: '1' }]
}

const mutations = {
}

const actions = {
}

export default {
  namespaced: true,
  state,
  mutations,
  actions
}