- Vue 3 + TypeScript + Element Plus 前端界面 - Pinia 状态管理 - Vue Router 4 路由管理 - Axios HTTP 客户端 - MSW (Mock Service Worker) 开发环境模拟 - 账户管理界面 (列表、详情、三科目余额展示) - 交易管理界面 (列表、详情) - 对账管理界面 (三账校验) - 完善的 API 客户端封装 - Docker 容器化配置 - Nginx 配置用于生产环境
25 lines
1.5 KiB
TypeScript
25 lines
1.5 KiB
TypeScript
import type { ExtractPropTypes, ExtractPublicPropTypes } from 'vue';
|
|
import type Popper from './popper.vue';
|
|
declare const effects: readonly ["light", "dark"];
|
|
declare const triggers: readonly ["click", "contextmenu", "hover", "focus"];
|
|
export declare const Effect: {
|
|
readonly LIGHT: "light";
|
|
readonly DARK: "dark";
|
|
};
|
|
export declare const roleTypes: readonly ["dialog", "grid", "group", "listbox", "menu", "navigation", "tooltip", "tree"];
|
|
export type PopperEffect = (typeof effects)[number] | (string & NonNullable<unknown>);
|
|
export type PopperTrigger = (typeof triggers)[number];
|
|
export declare const popperProps: {
|
|
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "grid" | "listbox" | "tooltip" | "tree" | "group" | "navigation", unknown, "tooltip", boolean>;
|
|
};
|
|
export type PopperProps = ExtractPropTypes<typeof popperProps>;
|
|
export type PopperPropsPublic = ExtractPublicPropTypes<typeof popperProps>;
|
|
export type PopperInstance = InstanceType<typeof Popper> & unknown;
|
|
/** @deprecated use `popperProps` instead, and it will be deprecated in the next major version */
|
|
export declare const usePopperProps: {
|
|
readonly role: import("element-plus/es/utils").EpPropFinalized<StringConstructor, "dialog" | "menu" | "grid" | "listbox" | "tooltip" | "tree" | "group" | "navigation", unknown, "tooltip", boolean>;
|
|
};
|
|
/** @deprecated use `PopperProps` instead, and it will be deprecated in the next major version */
|
|
export type UsePopperProps = PopperProps;
|
|
export {};
|