use-menu.d.ts 283 Bytes
import type { ComponentInternalInstance, Ref } from 'vue';
export default function useMenu(instance: ComponentInternalInstance, currentIndex: Ref<string>): {
    parentMenu: import("vue").ComputedRef<ComponentInternalInstance>;
    indexPath: import("vue").ComputedRef<string[]>;
};