1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
| import '../../../utils/index.mjs';
| import { buildProps, definePropType } from '../../../utils/vue/props/runtime.mjs';
| import { isString } from '@vue/shared';
|
| const menuItemProps = buildProps({
| index: {
| type: definePropType([String, null]),
| default: null
| },
| route: {
| type: definePropType([String, Object])
| },
| disabled: Boolean
| });
| const menuItemEmits = {
| click: (item) => isString(item.index) && Array.isArray(item.indexPath)
| };
|
| export { menuItemEmits, menuItemProps };
| //# sourceMappingURL=menu-item.mjs.map
|
|