增加admin管理帐号和项目的界面--初步实现
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
import type { ComputedRef, InjectionKey, Ref, ToRefs } from 'vue';
|
||||
import type { SliderProps } from './slider';
|
||||
export interface SliderContext extends ToRefs<SliderProps> {
|
||||
precision: ComputedRef<number>;
|
||||
sliderSize: Ref<number>;
|
||||
emitChange: () => void;
|
||||
resetSize: () => void;
|
||||
updateDragging: (val: boolean) => void;
|
||||
disabled: ComputedRef<boolean>;
|
||||
}
|
||||
export declare const sliderContextKey: InjectionKey<SliderContext>;
|
||||
Reference in New Issue
Block a user