增加admin管理帐号和项目的界面--初步实现
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
import type { InjectionKey, ObjectDirective, Ref } from 'vue';
|
||||
type ForwardRefSetter = <T>(el: T) => void;
|
||||
export type ForwardRefInjectionContext = {
|
||||
setForwardRef: ForwardRefSetter;
|
||||
};
|
||||
export declare const FORWARD_REF_INJECTION_KEY: InjectionKey<ForwardRefInjectionContext>;
|
||||
export declare const useForwardRef: <T>(forwardRef: Ref<T | null>) => void;
|
||||
export declare const useForwardRefDirective: (setForwardRef: ForwardRefSetter) => ObjectDirective;
|
||||
export {};
|
||||
Reference in New Issue
Block a user