zhangyong
2023-08-22 1353e87cb21a4032d585d7404bae9042f2ebcf08
1
2
3
4
5
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[]>;
};