index.js 174 Bytes RawBlameHistoryPermalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 /** * Action 类型 */ export const type ={ SWITCCH_MENU:'SWITCH_MENU' } export function switchMenu(menuName){ return{ type:type.SWITCCH_MENU, menuName } }