- Vue 3 + TypeScript + Element Plus 前端界面 - Pinia 状态管理 - Vue Router 4 路由管理 - Axios HTTP 客户端 - MSW (Mock Service Worker) 开发环境模拟 - 账户管理界面 (列表、详情、三科目余额展示) - 交易管理界面 (列表、详情) - 对账管理界面 (三账校验) - 完善的 API 客户端封装 - Docker 容器化配置 - Nginx 配置用于生产环境
14 lines
744 B
TypeScript
14 lines
744 B
TypeScript
import type { InjectionKey, Ref } from 'vue';
|
|
export declare const FOCUS_AFTER_TRAPPED = "focus-trap.focus-after-trapped";
|
|
export declare const FOCUS_AFTER_RELEASED = "focus-trap.focus-after-released";
|
|
export declare const FOCUSOUT_PREVENTED = "focus-trap.focusout-prevented";
|
|
export declare const FOCUS_AFTER_TRAPPED_OPTS: EventInit;
|
|
export declare const FOCUSOUT_PREVENTED_OPTS: EventInit;
|
|
export declare const ON_TRAP_FOCUS_EVT = "focusAfterTrapped";
|
|
export declare const ON_RELEASE_FOCUS_EVT = "focusAfterReleased";
|
|
export type FocusTrapInjectionContext = {
|
|
focusTrapRef: Ref<HTMLElement | undefined>;
|
|
onKeydown: (e: KeyboardEvent) => void;
|
|
};
|
|
export declare const FOCUS_TRAP_INJECTION_KEY: InjectionKey<FocusTrapInjectionContext>;
|