tms-vue3-ui
Version:
Vue3基础UI库,提供JSONSchema编辑器,支持基于JSONSchema生成表单。
29 lines (28 loc) • 525 B
TypeScript
/**
* 需要用户输入的数据
*
* type对应input组件的type类型。
* type=captcha,作为图形验证码。
* type=smscode,作为短信验证码。
*/
export type SubmitDataItem = {
key: string;
type: string;
placeholder: string;
};
/**
* 验证码返回结果
*/
export type CaptchaResponse = {
code: number;
captcha: string;
[key: string]: any;
};
/**
* 登录操作返回的响应
*/
export type LoginResponse = {
code: number;
msg: string;
[key: string]: any;
};