11 lines
312 B
TypeScript
11 lines
312 B
TypeScript
|
import ContextMenu from './src/ContextMenu.vue'
|
||
|
import { ElDropdown } from 'element-plus'
|
||
|
import type { RouteLocationNormalizedLoaded } from 'vue-router'
|
||
|
|
||
|
export interface ContextMenuExpose {
|
||
|
elDropdownMenuRef: ComponentRef<typeof ElDropdown>
|
||
|
tagItem: RouteLocationNormalizedLoaded
|
||
|
}
|
||
|
|
||
|
export { ContextMenu }
|