first commit

This commit is contained in:
2025-06-17 11:39:51 +08:00
commit 4d913c0007
12754 changed files with 1480633 additions and 0 deletions

View File

@@ -0,0 +1,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[]>;
};