1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
| import type { DropMenu } from '@/components/Dropdown';
| import type { RouteLocationNormalized } from 'vue-router';
|
| export enum TabContentEnum {
| TAB_TYPE,
| EXTRA_TYPE,
| }
|
| export type { DropMenu };
|
| export interface TabContentProps {
| tabItem: RouteLocationNormalized;
| type?: TabContentEnum;
| trigger?: ('click' | 'hover' | 'contextmenu')[];
| }
|
| export enum MenuEventEnum {
| REFRESH_PAGE,
| CLOSE_CURRENT,
| CLOSE_LEFT,
| CLOSE_RIGHT,
| CLOSE_OTHER,
| CLOSE_ALL,
| SCALE,
| }
|
|