/** * 赛事相关 * */ export default { namespaced: true, state: { toMatch: false }, mutations: { SET_SOURCE: state => { state.toMatch = true } }, actions: { } };