yapi/client/actions/menu.js

11 lines
170 B
JavaScript
Raw Normal View History

2017-07-20 21:30:35 +08:00
import {
CHANGE_MENU_ITEM
} from '../constants/action-types.js'
export function changeMenuItem(curKey) {
return {
type: CHANGE_MENU_ITEM,
data: curKey
}
}