12345678910111213141516171819202122232425262728 |
- /*
- * @Author: your name
- * @Date: 2022-01-14 16:09:09
- * @LastEditTime: 2022-01-14 16:13:10
- * @LastEditors: your name
- * @Description: 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
- * @FilePath: /KC-MiddlePlatform/src/constant.ts
- */
- //菜单所有类型
- export const MenuTypes = [
- {
- label: '目录',
- value: 0,
- },
- {
- label: '菜单',
- value: 1,
- },
- {
- label: '按钮',
- value: 2,
- },
- {
- label: '系统',
- value: 3,
- },
- ];
|