mirror of
https://github.com/YMFE/yapi.git
synced 2025-01-06 12:45:22 +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
|
|
}
|
|
}
|