first commit

This commit is contained in:
2025-12-29 14:59:44 +08:00
commit 10c3fbb0d7
5315 changed files with 795443 additions and 0 deletions

14
node_modules/vant/es/utils/mount-component.d.ts generated vendored Normal file
View File

@@ -0,0 +1,14 @@
import { Component } from 'vue';
export declare function usePopupState(): {
open: (props: Record<string, any>) => void;
close: () => void;
state: {
[x: string]: any;
show: boolean;
};
toggle: (show: boolean) => void;
};
export declare function mountComponent(RootComponent: Component): {
instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import("vue").ComponentProvideOptions>, {}, {}, "", {}, any>;
unmount(): void;
};