mirror of
https://github.com/YMFE/yapi.git
synced 2024-12-21 05:19:42 +08:00
11 lines
170 B
JavaScript
11 lines
170 B
JavaScript
|
import {
|
||
|
CHANGE_MENU_ITEM
|
||
|
} from '../constants/action-types.js'
|
||
|
|
||
|
export function changeMenuItem(curKey) {
|
||
|
return {
|
||
|
type: CHANGE_MENU_ITEM,
|
||
|
data: curKey
|
||
|
}
|
||
|
}
|